You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.4 KiB
85 lines
2.4 KiB
|
2 years ago
|
<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>
|
||
|
|
<parent>
|
||
|
|
<groupId>com.back</groupId>
|
||
|
|
<artifactId>processor</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<artifactId>common</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
<version>3.8</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>1.2.66</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>5.1.40</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-api</artifactId>
|
||
|
|
<version>1.7.25</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.5.6</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
<version>2.8.9</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.bidib.jbidib.org.qbang.rxtx</groupId>
|
||
|
|
<artifactId>rxtxcomm</artifactId>
|
||
|
|
<version>2.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.scream3r</groupId>
|
||
|
|
<artifactId>jssc</artifactId>
|
||
|
|
<version>2.8.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.mail</groupId>
|
||
|
|
<artifactId>javax.mail</artifactId>
|
||
|
|
<version>1.6.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<!--Milo客户端的依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.eclipse.milo</groupId>
|
||
|
|
<artifactId>sdk-client</artifactId>
|
||
|
|
<version>0.6.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.java-websocket</groupId>
|
||
|
|
<artifactId>Java-WebSocket</artifactId>
|
||
|
|
<version>1.5.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
</project>
|