first can version
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.wdd</groupId>
|
<groupId>io.wdd</groupId>
|
||||||
<artifactId>wdd-common</artifactId>
|
<artifactId>common</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<!-- <scope>compile</scope>-->
|
<!-- <scope>compile</scope>-->
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|||||||
@@ -10,12 +10,11 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>io.wdd</groupId>
|
<groupId>io.wdd</groupId>
|
||||||
<artifactId>wdd-common</artifactId>
|
<artifactId>common</artifactId>
|
||||||
|
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
|
|
||||||
<name>wdd-common</name>
|
<name>common</name>
|
||||||
<description>wdd-common</description>
|
<description>common</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>11</java.version>
|
<java.version>11</java.version>
|
||||||
@@ -4,10 +4,10 @@ import org.springframework.boot.SpringApplication;
|
|||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class WddCommonApplication {
|
public class CommonApplication {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(WddCommonApplication.class, args);
|
SpringApplication.run(CommonApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
package io.wdd.wddcommon;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
|
@SpringBootTest
|
||||||
|
class CommonApplicationTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void contextLoads() {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
2
pom.xml
2
pom.xml
@@ -21,7 +21,7 @@
|
|||||||
<modules>
|
<modules>
|
||||||
<module>agent</module>
|
<module>agent</module>
|
||||||
<module>server</module>
|
<module>server</module>
|
||||||
<module>wdd-common</module>
|
<module>common</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.wdd</groupId>
|
<groupId>io.wdd</groupId>
|
||||||
<artifactId>wdd-common</artifactId>
|
<artifactId>common</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
<!-- <dependency>-->
|
<!-- <dependency>-->
|
||||||
<!-- <groupId>io.wdd</groupId>-->
|
<!-- <groupId>io.wdd</groupId>-->
|
||||||
<!-- <artifactId>wdd-common</artifactId>-->
|
<!-- <artifactId>common</artifactId>-->
|
||||||
<!-- <version>${project.version}</version>-->
|
<!-- <version>${project.version}</version>-->
|
||||||
<!-- <type>jar</type>-->
|
<!-- <type>jar</type>-->
|
||||||
<!-- <scope>import</scope>-->
|
<!-- <scope>import</scope>-->
|
||||||
|
|||||||
Reference in New Issue
Block a user