修改添加ncc模块,添加ncc-message作为子模块

This commit is contained in:
tiger_zhou 2023-02-27 13:50:38 +08:00
parent 1ce9312497
commit 5b2a704468
4 changed files with 18 additions and 5 deletions

View File

@ -24,6 +24,12 @@
<groupId>club.joylink.rtss</groupId>
<artifactId>auth</artifactId>
</dependency>
<dependency>
<groupId>club.joylink.rtss</groupId>
<artifactId>ncc</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>

@ -1 +1 @@
Subproject commit 755f310e3d1bc909a47c2c7d7aaf5a04cc0a89e0
Subproject commit 348eab7de14eb4f2dbeef790a6e792ae4e968997

View File

@ -3,18 +3,24 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>simulation</artifactId>
<groupId>club.joylink.rtss</groupId>
<artifactId>simulation</artifactId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>club.joylink.rtss.simulation</groupId>
<!-- <groupId>club.joylink.rtss.simulation</groupId>-->
<artifactId>ncc</artifactId>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>club.joylink.rtss</groupId>
<artifactId>ncc-message</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
</project>

View File

@ -5,6 +5,7 @@
<modules>
<module>ISCS</module>
<module>ncc</module>
<module>ncc-message</module>
</modules>
<parent>
<groupId>club.joylink.rtss</groupId>