<?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>com.fzzy</groupId>
|
<artifactId>pms-io</artifactId>
|
<version>${fpms.version}</version>
|
|
<parent>
|
<artifactId>pms-parent</artifactId>
|
<groupId>com.fzzy</groupId>
|
<version>4.0.0</version>
|
<relativePath>../pms-parent/pom.xml</relativePath>
|
</parent>
|
|
|
<description>
|
IO模块
|
</description>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>pms-core</artifactId>
|
<version>${fpms.version}</version>
|
</dependency>
|
|
|
<!-- 引入MQTT-->
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-mqtt</artifactId>
|
<version>4.7.8</version>
|
</dependency>
|
|
|
|
<!-- 引入IO包 -->
|
<dependency>
|
<groupId>com.ld.base.io</groupId>
|
<artifactId>base-io-netty</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/lib/base-io-netty-1.0.0-SNAPSHOT.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>com.ld.base.io</groupId>
|
<artifactId>base-io-api</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/lib/base-io-api-1.0.0-SNAPSHOT.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-transport</artifactId>
|
<version>4.1.92.Final</version>
|
</dependency>
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-transport-sctp</artifactId>
|
<version>4.1.92.Final</version>
|
</dependency>
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-handler</artifactId>
|
<version>4.1.92.Final</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<compilerArguments>
|
<extdirs>src\main\webapp\WEB-INF\lib</extdirs>
|
</compilerArguments>
|
</configuration>
|
</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>
|
</build>
|
|
</project>
|