Files
mall-ebtp-cloud/uboot-core/pom.xml

52 lines
1.6 KiB
XML
Raw Normal View History

2020-12-12 10:48:23 +08:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
2021-09-10 10:17:09 +08:00
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
2020-12-11 14:38:30 +08:00
2021-09-10 10:17:09 +08:00
<parent>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-parent</artifactId>
2025-04-01 09:49:16 +08:00
<version>2.4.1-zyhy-SNAPSHOT</version>
2021-09-10 10:17:09 +08:00
<relativePath>../mall-ebtp-cloud-parent</relativePath>
</parent>
2020-12-11 14:38:30 +08:00
2021-09-10 10:17:09 +08:00
<groupId>com.chinaunicom.mall.ebtp</groupId>
<artifactId>uboot-core</artifactId>
2025-04-01 09:49:16 +08:00
<version>2.4.1-zyhy-SNAPSHOT</version>
2021-09-10 10:17:09 +08:00
<name>uboot-core</name>
2020-12-11 14:38:30 +08:00
2021-09-10 10:17:09 +08:00
<dependencies>
2020-12-12 10:48:23 +08:00
2021-09-10 10:17:09 +08:00
<dependency>
<groupId>com.chinaunicom.mall.ebtp</groupId>
<artifactId>uboot-common</artifactId>
2025-04-01 09:49:16 +08:00
<version>2.4.1-zyhy-SNAPSHOT</version>
2021-09-10 10:17:09 +08:00
</dependency>
2021-01-05 09:01:21 +08:00
2021-09-10 10:17:09 +08:00
<dependency>
<groupId>com.chinaunicom.ebtp</groupId>
<artifactId>mall-ebtp-cloud-jpa-starter</artifactId>
</dependency>
2020-12-11 14:38:30 +08:00
2021-09-10 10:17:09 +08:00
</dependencies>
2020-12-11 14:38:30 +08:00
2021-09-10 10:17:09 +08:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
2025-04-01 09:49:16 +08:00
</project>