|
@@ -31,9 +31,41 @@
|
|
|
<java.version>1.8</java.version>
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
+ <build.finalName.core>server-core</build.finalName.core>
|
|
|
+ <build.finalName.control>server-control</build.finalName.control>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.junit.vintage</groupId>
|
|
|
+ <artifactId>junit-vintage-engine</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-undertow</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba.spring.boot</groupId>
|