43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<?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>com.yfd</groupId>
|
|
<artifactId>platform</artifactId>
|
|
<version>1.0</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>qgc-eng-server</artifactId>
|
|
<version>1.0</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>QGC Eng Server</name>
|
|
<description>QGC Engineering Server Module</description>
|
|
|
|
<dependencies>
|
|
<!-- Common Module -->
|
|
<dependency>
|
|
<groupId>com.yfd</groupId>
|
|
<artifactId>platform-common</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
|
|
<!-- System Module -->
|
|
<dependency>
|
|
<groupId>com.yfd</groupId>
|
|
<artifactId>platform-system</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
|
|
<!-- MyBatis Plus -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot4-starter</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |