<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>com.ld.igds</groupId>
|
<artifactId>igds-api-phone</artifactId>
|
<version>4.0.0-RELEASE</version>
|
<packaging>jar</packaging>
|
|
|
<!-- 定义SpringBoot版本和项目公用的JAR包 -->
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<java.version>1.8</java.version>
|
<igds.version>4.0.0-RELEASE</igds.version>
|
</properties>
|
|
<dependencies>
|
|
<!-- 基础模块 粮情、虫害、气体、气象 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-basic</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 能耗模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-es</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 安防模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-security</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 通风模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-verb</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 粮食数量 数量检测、粮食监管 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-quantity</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 环流、温控、熏蒸 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-recir</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 气调模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-n2</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 综合管理模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-manager</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
<!-- 出入库模块 -->
|
<dependency>
|
<groupId>com.ld.igds</groupId>
|
<artifactId>igds-inout</artifactId>
|
<version>${igds.version}</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>${java.version}</source>
|
<target>${java.version}</target>
|
</configuration>
|
</plugin>
|
|
<!--添加打包源代码-->
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-source-plugin</artifactId>
|
<executions>
|
<execution>
|
<id>igds-api-phone-sources</id>
|
<goals>
|
<goal>jar</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
|
</plugins>
|
<resources>
|
<resource>
|
<directory>src/main/java</directory>
|
<includes>
|
<include>**/*.xml</include>
|
<include>**/*.js</include>
|
</includes>
|
<filtering>true</filtering>
|
</resource>
|
<resource>
|
<directory>src/main/resources</directory>
|
</resource>
|
</resources>
|
<finalName>igds-api-phone</finalName>
|
</build>
|
|
</project>
|