105 lines
3.6 KiB
XML
105 lines
3.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>zfipc</artifactId>
|
|
<groupId>com.inspur</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>zfipc-datasyn</artifactId>
|
|
<dependencies>
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.inspur</groupId>
|
|
<artifactId>zfipc-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.inspur</groupId>
|
|
<artifactId>zfipc-system</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.0.7</version>
|
|
</dependency>
|
|
<!-- 串口通信 begin-->
|
|
<dependency>
|
|
<groupId>org.rxtx</groupId>
|
|
<artifactId>rxtx</artifactId>
|
|
<version>2.1.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.java-native</groupId>
|
|
<artifactId>jssc</artifactId>
|
|
<version>2.9.2</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.commons</groupId>-->
|
|
<!-- <artifactId>commons-lang3</artifactId>-->
|
|
<!-- <version>3.7</version>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>20.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.inspur</groupId>
|
|
<artifactId>zfipc-framework</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.infiniteautomation</groupId>
|
|
<artifactId>modbus4j</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.9</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
</properties>
|
|
<repositories>
|
|
<repository>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<id>ias-snapshots</id>
|
|
<name>Infinite Automation Snapshot Repository</name>
|
|
<url>https://maven.mangoautomation.net/repository/ias-snapshot/</url>
|
|
</repository>
|
|
<repository>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<id>ias-releases</id>
|
|
<name>Infinite Automation Release Repository</name>
|
|
<url>https://maven.mangoautomation.net/repository/ias-release/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|