91 lines
3.1 KiB
XML
91 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>foton-slrs-system-rest</artifactId>
|
|
<version>3.0.0</version>
|
|
</parent>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-main</artifactId>
|
|
<name>adc-da-main</name>
|
|
<description>laws system rest main</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-slrs</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-activiti</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-sys</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-base</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-jwtLogin</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
<version>2.2.0.RELEASE</version>
|
|
</dependency>
|
|
<!-- feign调用 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
<version>2.2.0.RELEASE</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.adc</groupId>-->
|
|
<!-- <artifactId>adc-da-search</artifactId>-->
|
|
<!-- <version>3.0.0</version>-->
|
|
<!-- <scope>compile</scope>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.adc</groupId>-->
|
|
<!-- <artifactId>adc-da-gen</artifactId>-->
|
|
<!-- <version>2.3.2-SNAPSHOT</version>-->
|
|
<!-- </dependency>-->
|
|
</dependencies>
|
|
<!-- Profiles for different environment -->
|
|
<profiles>
|
|
</profiles>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<includeSystemScope>true</includeSystemScope>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|