2024-10-30 10:02:55 +08:00
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2025-10-10 21:07:33 +08:00
|
|
|
<!--灿能微服务生态系统 -->
|
2024-10-30 10:02:55 +08:00
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>BasicDependVersion</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>njcn-common</module>
|
|
|
|
|
<module>njcn-springboot</module>
|
|
|
|
|
<module>njcn-db</module>
|
2025-06-18 16:36:01 +08:00
|
|
|
<module>njcn-plugin</module>
|
2024-10-30 10:02:55 +08:00
|
|
|
</modules>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>版本控制项目</name>
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>nexus-releases</id>
|
|
|
|
|
<name>Nexus Release Repository</name>
|
|
|
|
|
<url>http://192.168.1.22:8001/nexus/content/repositories/releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>nexus-snapshots</id>
|
|
|
|
|
<name>Nexus Snapshot Repository</name>
|
|
|
|
|
<url>http://192.168.1.22:8001/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
<properties>
|
|
|
|
|
<spring-boot.version>2.3.12.RELEASE</spring-boot.version>
|
2025-10-10 21:06:24 +08:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
2024-10-30 10:02:55 +08:00
|
|
|
</properties>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>2.2.2.RELEASE</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<fork>true</fork>
|
|
|
|
|
<addResources>true</addResources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|