forked from I3-YF/i3plus-mes-yfai
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
5.1 KiB
XML
158 lines
5.1 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>i3plus.ext.mes</groupId>
|
|
<artifactId>i3plus-ext-mes</artifactId>
|
|
<version>1.0.0-yfai</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>i3plus-ext-mes-apiservice</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<!-- impp framework -->
|
|
<dependency>
|
|
<groupId>impp.framework</groupId>
|
|
<artifactId>impp-framework-boot</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>guava</artifactId>
|
|
<groupId>com.google.guava</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.ext.mes</groupId>
|
|
<artifactId>i3plus-ext-mes-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.mes</groupId>
|
|
<artifactId>i3plus-mes-apiservice</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.mes</groupId>
|
|
<artifactId>i3plus-mes-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.ext.mes</groupId>
|
|
<artifactId>i3plus-ext-mes-pojo</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.ext.mes</groupId>
|
|
<artifactId>i3plus-ext-mes-icloud</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.icloud</groupId>
|
|
<artifactId>i3plus-icloud-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.icloud</groupId>
|
|
<artifactId>i3plus-icloud-wms</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.icloud</groupId>
|
|
<artifactId>i3plus-icloud-andon</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.icloud</groupId>
|
|
<artifactId>i3plus-icloud-softswitch</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-base</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-model</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-mes</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.platform</groupId>
|
|
<artifactId>i3plus-platform-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.platform</groupId>
|
|
<artifactId>i3plus-platform-plugin</artifactId>
|
|
</dependency>
|
|
<!-- webservice -->
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
|
|
<version>3.3.6</version>
|
|
<!-- <type>bundle</type>-->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- 平台boot服务 -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>cn.estsh.impp.framework.run.ImppGo</mainClass>
|
|
<layout>JAR</layout>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!--为了spring boot的yml和properties文件能够使用maven变量替换,使用${}占位符-->
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>utf-8</encoding>
|
|
<useDefaultDelimiters>true</useDefaultDelimiters>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<!-- 资源文件位置描述 -->
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<testSourceDirectory>src/test/</testSourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
|
|
<finalName>${parent.artifactId}-${project.version}</finalName>
|
|
</build>
|
|
</project>
|