2025-05-13 09:59:31 +08:00

41 lines
1.3 KiB
XML

<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.primeton.eos</groupId>
<artifactId>demo</artifactId>
<version>1.0.0</version>
<relativePath>../</relativePath>
</parent>
<artifactId>com.primeton.eos.demo.starter</artifactId>
<name>com.primeton.eos.demo.starter</name>
<dependencies>
<dependency>
<groupId>com.primeton.eos</groupId>
<artifactId>com.primeton.eos.demo.model</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.primeton.eos</groupId>
<artifactId>com.primeton.eos.demo.api</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.primeton.eos</groupId>
<artifactId>com.primeton.eos.demo.core</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>