first can version

This commit is contained in:
zeaslity
2022-11-21 18:26:41 +08:00
parent 64cf98cf7e
commit 80b66375a3
10 changed files with 22 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
<dependency>
<groupId>io.wdd</groupId>
<artifactId>wdd-common</artifactId>
<artifactId>common</artifactId>
<version>${project.version}</version>
<!-- <scope>compile</scope>-->
</dependency>

View File

@@ -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>

View File

@@ -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);
}
}

View File

@@ -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() {
}
}

View File

@@ -21,7 +21,7 @@
<modules>
<module>agent</module>
<module>server</module>
<module>wdd-common</module>
<module>common</module>
</modules>
<properties>

View File

@@ -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>-->