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.
104 lines
3.5 KiB
104 lines
3.5 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>yxkLibraryIntegratedManage</artifactId>
|
|
<groupId>com.yxkLibraryIntegratedManage</groupId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
|
|
<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.yxkLibraryIntegratedManage</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.yxkLibraryIntegratedManage</groupId>
|
|
<artifactId>logging</artifactId>
|
|
<version>1.0</version>
|
|
</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>
|
|
|
|
<!-- ftp -->
|
|
<dependency>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
<version>3.8.0</version> <!-- 请检查最新的版本号 -->
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>intellArchives</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.6.1</version>
|
|
<configuration>
|
|
<!-- includeSystemScope 值要为true -->
|
|
<includeSystemScope>true</includeSystemScope>
|
|
<excludes>
|
|
<exclude>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|