2024-03-26 13:34:31 +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">
|
2025-08-18 16:55:36 +08:00
|
|
|
|
2024-03-26 13:34:31 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.hzya.frame</groupId>
|
2025-08-18 16:55:36 +08:00
|
|
|
<artifactId>kangarooDataCenterV3</artifactId>
|
2024-03-26 13:34:31 +08:00
|
|
|
<version>${revision}</version>
|
2025-08-18 16:55:36 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2024-03-26 13:34:31 +08:00
|
|
|
</parent>
|
2025-08-18 16:55:36 +08:00
|
|
|
|
2024-03-26 13:34:31 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-09-13 11:25:17 +08:00
|
|
|
<artifactId>base-buildpackage</artifactId>
|
2024-03-26 13:34:31 +08:00
|
|
|
<packaging>war</packaging>
|
2025-08-18 16:55:36 +08:00
|
|
|
|
2024-03-26 13:34:31 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hzya.frame</groupId>
|
2024-09-13 11:25:17 +08:00
|
|
|
<artifactId>base-webapp</artifactId>
|
2024-03-26 13:34:31 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2025-08-26 18:42:11 +08:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcmail-jdk15on -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcmail-jdk15on</artifactId>
|
|
|
|
<version>1.56</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
|
|
|
<version>1.57</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
<version>1.57</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.9</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.xiaoleilu/hutool-all -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xiaoleilu</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<version>3.0.9</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>3.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okio/okio -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okio</groupId>
|
|
|
|
<artifactId>okio</artifactId>
|
|
|
|
<version>1.8.0</version>
|
|
|
|
</dependency>
|
2024-03-26 13:34:31 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2024-04-11 14:13:03 +08:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
2025-08-18 16:55:36 +08:00
|
|
|
<id>dev</id> <!-- 开发环境 -->
|
2024-04-11 14:13:03 +08:00
|
|
|
<properties>
|
2024-09-12 14:27:30 +08:00
|
|
|
<profile.active>dev</profile.active>
|
2024-04-11 14:13:03 +08:00
|
|
|
</properties>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2025-08-18 16:55:36 +08:00
|
|
|
|
2024-03-26 13:34:31 +08:00
|
|
|
<build>
|
2024-04-24 11:14:26 +08:00
|
|
|
<finalName>kangarooDataCenterV3</finalName>
|
2025-08-18 16:55:36 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<!-- 移除了引用不存在目录的webResources配置 -->
|
|
|
|
<!-- Maven会自动将依赖的jar包打包到WEB-INF/lib目录 -->
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2024-03-26 13:34:31 +08:00
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|