2025-08-18 17:02:03 +08:00
|
|
|
<?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>
|
|
|
|
<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>
|
2025-09-10 09:46:44 +08:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
2025-08-18 17:02:03 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2025-09-10 09:46:44 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>aliyun</id>
|
|
|
|
<name>aliyun Repository</name>
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>jeecg</id>
|
|
|
|
<name>jeecg Repository</name>
|
|
|
|
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2025-08-18 17:02:03 +08:00
|
|
|
</project>
|