49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>3.2.5</version>
|
||
|
|
<relativePath/>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<groupId>huangzj</groupId>
|
||
|
|
<artifactId>comm-framework</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
<name>comm-framework</name>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>ProtoBufModule</module>
|
||
|
|
<module>BaseModule</module>
|
||
|
|
<module>CrossModule</module>
|
||
|
|
<module>ServerModule</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
<repositories>
|
||
|
|
<repository>
|
||
|
|
<id>aliyun-public</id>
|
||
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
||
|
|
<releases><enabled>true</enabled></releases>
|
||
|
|
<snapshots><enabled>true</enabled></snapshots>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
<pluginRepositories>
|
||
|
|
<pluginRepository>
|
||
|
|
<id>aliyun-public</id>
|
||
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
||
|
|
<releases><enabled>true</enabled></releases>
|
||
|
|
<snapshots><enabled>true</enabled></snapshots>
|
||
|
|
</pluginRepository>
|
||
|
|
</pluginRepositories>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>17</java.version>
|
||
|
|
<protobuf.version>3.25.3</protobuf.version>
|
||
|
|
</properties>
|
||
|
|
</project>
|