|
|
@ -0,0 +1,76 @@ |
|
|
|
<?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>yxk_StoreroomSystem</artifactId> |
|
|
|
<groupId>com.storeroom</groupId> |
|
|
|
<version>1.0</version> |
|
|
|
</parent> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
|
|
|
|
<artifactId>system</artifactId> |
|
|
|
<name>系统设置</name> |
|
|
|
|
|
|
|
<properties> |
|
|
|
<jjwt.version>0.11.2</jjwt.version> |
|
|
|
<!-- oshi监控需要指定jna版本, 问题详见 https://github.com/oshi/oshi/issues/1040 --> |
|
|
|
<jna.version>5.6.0</jna.version> |
|
|
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>com.storeroom</groupId> |
|
|
|
<artifactId>common</artifactId> |
|
|
|
<version>1.0</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- Spring boot websocket --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- jwt --> |
|
|
|
<dependency> |
|
|
|
<groupId>io.jsonwebtoken</groupId> |
|
|
|
<artifactId>jjwt-api</artifactId> |
|
|
|
<version>${jjwt.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>io.jsonwebtoken</groupId> |
|
|
|
<artifactId>jjwt-impl</artifactId> |
|
|
|
<version>${jjwt.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>io.jsonwebtoken</groupId> |
|
|
|
<artifactId>jjwt-jackson</artifactId> |
|
|
|
<version>${jjwt.version}</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- linux的管理 --> |
|
|
|
<dependency> |
|
|
|
<groupId>ch.ethz.ganymed</groupId> |
|
|
|
<artifactId>ganymed-ssh2</artifactId> |
|
|
|
<version>build210</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>com.jcraft</groupId> |
|
|
|
<artifactId>jsch</artifactId> |
|
|
|
<version>0.1.55</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- 获取系统信息 --> |
|
|
|
<dependency> |
|
|
|
<groupId>com.github.oshi</groupId> |
|
|
|
<artifactId>oshi-core</artifactId> |
|
|
|
<version>5.3.6</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- quartz --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.quartz-scheduler</groupId> |
|
|
|
<artifactId>quartz</artifactId> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
</project> |