49 lines
1.4 KiB
XML
49 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.hzya.frame</groupId>
|
||
|
<artifactId>kangarooDataCenterV3</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<groupId>com.hzya.frame</groupId>
|
||
|
<artifactId>base-buildpackage</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>war</packaging>
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache License, Version 2.0</name>
|
||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.hzya.frame</groupId>
|
||
|
<artifactId>base-webapp</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>kangarooDataCenterV3</finalName>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>3.3.2</version>
|
||
|
<configuration></configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>dev</id>
|
||
|
<activation>
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
<properties>
|
||
|
<profile.active>dev</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
</project>
|