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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>kangarooDataCenterV3</artifactId>
|
|
|
|
<groupId>com.hzya.frame</groupId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<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>
|
2024-09-13 11:25:17 +08:00
|
|
|
<version>${revision}</version>
|
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-03-24 11:27:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.hzya.frame</groupId>
|
|
|
|
<artifactId>fw-oa</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2024-03-26 13:34:31 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2024-04-11 14:13:03 +08:00
|
|
|
<profiles>
|
2025-03-20 14:26:43 +08:00
|
|
|
|
2024-09-12 14:27:30 +08:00
|
|
|
|
2024-09-18 16:51:20 +08:00
|
|
|
<profile>
|
2025-03-19 11:04:53 +08:00
|
|
|
<id>ht</id> <!--开发环境-->
|
2024-09-18 16:51:20 +08:00
|
|
|
<properties>
|
2025-03-19 11:04:53 +08:00
|
|
|
<profile.active>ht</profile.active>
|
2024-09-18 16:51:20 +08:00
|
|
|
</properties>
|
2025-03-19 11:04:53 +08:00
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
2024-09-18 16:51:20 +08:00
|
|
|
</profile>
|
2025-04-02 14:57:23 +08:00
|
|
|
<profile>
|
|
|
|
<id>httest</id> <!--开发环境-->
|
|
|
|
<properties>
|
|
|
|
<profile.active>httest</profile.active>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2025-04-23 16:13:30 +08:00
|
|
|
<profile>
|
|
|
|
<id>xel</id> <!--相二林本地环境-->
|
|
|
|
<properties>
|
|
|
|
<profile.active>xel</profile.active>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2025-04-10 09:15:23 +08:00
|
|
|
<profile>
|
|
|
|
<id>llg</id> <!--开发环境-->
|
|
|
|
<properties>
|
|
|
|
<profile.active>llg</profile.active>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2024-04-11 14:13:03 +08:00
|
|
|
</profiles>
|
2024-03-26 13:34:31 +08:00
|
|
|
<build>
|
2024-04-24 11:14:26 +08:00
|
|
|
<finalName>kangarooDataCenterV3</finalName>
|
2024-03-26 13:34:31 +08:00
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|