first can version
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
|
||||
<dependency>
|
||||
<groupId>io.wdd</groupId>
|
||||
<artifactId>wdd-common</artifactId>
|
||||
<artifactId>common</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<!-- <scope>compile</scope>-->
|
||||
</dependency>
|
||||
|
||||
@@ -10,12 +10,11 @@
|
||||
</parent>
|
||||
|
||||
<groupId>io.wdd</groupId>
|
||||
<artifactId>wdd-common</artifactId>
|
||||
|
||||
<artifactId>common</artifactId>
|
||||
<version>${project.version}</version>
|
||||
|
||||
<name>wdd-common</name>
|
||||
<description>wdd-common</description>
|
||||
<name>common</name>
|
||||
<description>common</description>
|
||||
|
||||
<properties>
|
||||
<java.version>11</java.version>
|
||||
@@ -4,10 +4,10 @@ import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class WddCommonApplication {
|
||||
public class CommonApplication {
|
||||
|
||||
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>
|
||||
<module>agent</module>
|
||||
<module>server</module>
|
||||
<module>wdd-common</module>
|
||||
<module>common</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
<dependency>
|
||||
<groupId>io.wdd</groupId>
|
||||
<artifactId>wdd-common</artifactId>
|
||||
<artifactId>common</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>io.wdd</groupId>-->
|
||||
<!-- <artifactId>wdd-common</artifactId>-->
|
||||
<!-- <artifactId>common</artifactId>-->
|
||||
<!-- <version>${project.version}</version>-->
|
||||
<!-- <type>jar</type>-->
|
||||
<!-- <scope>import</scope>-->
|
||||
|
||||
Reference in New Issue
Block a user