2024-02-05 09:00:24 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>jeecg-module-app</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2024-02-20 15:40:13 +08:00
|
|
|
<!-- jeecg-system-cloud-api -->
|
2024-02-05 09:00:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2024-02-20 15:40:13 +08:00
|
|
|
<artifactId>jeecg-system-cloud-api</artifactId>
|
2024-02-05 09:00:24 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-base-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|