symes-api/mes-service/mes-craft/pom.xml

48 lines
1.5 KiB
XML
Raw Normal View History

2026-07-21 11:47:06 +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>com.songyue</groupId>
<artifactId>mes-service</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>mes-craft</artifactId>
<packaging>pom</packaging>
<modules>
<module>craft-srv</module>
<module>craft-api</module>
</modules>
<properties>
<project.version>1.0.0</project.version>
<groupId>com.songyue.craft</groupId>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.songyue</groupId>
<artifactId>jy-starter</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.songyue</groupId>
<artifactId>jy-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- 引入 craft-api 模块 -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>craft-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>