75 řádky
2.6 KiB
XML
75 řádky
2.6 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">
|
|
<parent>
|
|
<artifactId>wms-parent</artifactId>
|
|
<groupId>com.deer</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>wms-produce-manage</artifactId>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<java.version>1.8</java.version>
|
|
<main.class>com.deer.wms.produce.manage.PmsApplication</main.class>
|
|
<batik.version>1.10</batik.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.deer</groupId>
|
|
<artifactId>wms-project-seed</artifactId>
|
|
<version>${project.version}</version>
|
|
<!--<scope>compile</scope>-->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.deer</groupId>
|
|
<artifactId>wms-intercept</artifactId>
|
|
<version>${project.version}</version>
|
|
<!--<scope>compile</scope>-->
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<build>
|
|
<finalName>mt-pms</finalName> <!-- 指定package生成的文件名为 -->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<name>local private nexus</name>
|
|
<url>http://132.232.34.114:18080/repository/maven-public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>nexus</id>
|
|
<name>local private nexus</name>
|
|
<url>http://132.232.34.114:18080/repository/maven-public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project> |