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.
229 lines
8.4 KiB
XML
229 lines
8.4 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>
|
|
|
|
<groupId>i3plus.core</groupId>
|
|
<artifactId>i3plus-core</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<modules>
|
|
<module>modules/i3plus-core-api</module>
|
|
<module>modules/i3plus-core-apiservice</module>
|
|
<module>modules/i3plus-core-icloud</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.0.3.RELEASE</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<properties>
|
|
<!--项目名称,需要修改-->
|
|
<project.name>i3plus-core</project.name>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
|
|
<log4j2.level>INFO</log4j2.level>
|
|
<log4j2.root.path>E:/i3plus-platform-logs/${project.name}</log4j2.root.path>
|
|
<log4j2.error.path>E:/i3plus-platform-logs/${project.name}-error</log4j2.error.path>
|
|
<log4j2.package.path>E:/i3plus-platform-logs/${project.name}-controller</log4j2.package.path>
|
|
<maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version>
|
|
<maven-jar-plugin.version>2.6</maven-jar-plugin.version>
|
|
<maven-compiler-plugin.version>2.1</maven-compiler-plugin.version>
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
|
<maven-scm-plugin.version>1.9.5</maven-scm-plugin.version>
|
|
<skipTests>true</skipTests>
|
|
<app.charset>UTF-8</app.charset>
|
|
<app.jdk.version>1.8</app.jdk.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- 外部对象模型 -->
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-wms</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- impp framework -->
|
|
<dependency>
|
|
<groupId>impp.framework</groupId>
|
|
<artifactId>impp-framework-boot</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-model</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 内部依赖声明 -->
|
|
<dependency>
|
|
<groupId>i3plus.core</groupId>
|
|
<artifactId>i3plus-core-api</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.platform</groupId>
|
|
<artifactId>i3plus-platform-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-platform</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-mes</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>i3plus.pojo</groupId>
|
|
<artifactId>i3plus-pojo-mes</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- mysql -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.39</version>
|
|
</dependency>
|
|
|
|
<!-- 常用string方法 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
|
|
<!-- shiro -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-core</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-web</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-spring</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
|
|
<!-- json -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.8</version>
|
|
</dependency>
|
|
|
|
<!-- ehcache -->
|
|
<dependency>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache-core</artifactId>
|
|
<version>2.6.11</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<!-- 私有仓库引用配置 -->
|
|
<repositories>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<url>http://mvn.estsh.com/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
|
|
<!-- 私有仓库Jar 包更新配置 -->
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>maven-releases</id>
|
|
<name>Nexus ReleaseRepository</name>
|
|
<url>http://mvn.estsh.com/repository/maven-releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>maven-snapshots</id>
|
|
<name>Nexus SnapshotRepository</name>
|
|
<url>http://mvn.estsh.com/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- maven编译的一些插件 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven-jar-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>${app.jdk.version}</source>
|
|
<target>${app.jdk.version}</target>
|
|
<encoding>${app.charset}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
<configuration>
|
|
<skip>${skipTests}</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>${maven-release-plugin.version}</version>
|
|
<configuration>
|
|
<releaseProfiles>prod</releaseProfiles>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<tagBase>http://git.evun.cn/GCDC-MES-SERVICE/PLATFORM_PROD_EXEC.git</tagBase>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-scm-plugin</artifactId>
|
|
<version>${maven-scm-plugin.version}</version>
|
|
<configuration>
|
|
<connectionType>developerConnection</connectionType>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |