156 lines
5.3 KiB
XML
156 lines
5.3 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>system-service-parent</artifactId>
|
|
<groupId>com.platform</groupId>
|
|
<version>0.4.x</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<version>0.4.x</version>
|
|
<artifactId>system-service</artifactId>
|
|
<properties>
|
|
<druid.version>1.2.8</druid.version>
|
|
<jna.version>5.8.0</jna.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.yeecode.dynamicdatasource</groupId>
|
|
<artifactId>DynamicDataSource</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
</dependency>
|
|
<!-- 获取系统信息 -->
|
|
<dependency>
|
|
<groupId>com.github.oshi</groupId>
|
|
<artifactId>oshi-core</artifactId>
|
|
<version>6.1.4</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>5.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>common-redis</artifactId>
|
|
<version>0.4.x</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>common-service-api</artifactId>
|
|
<version>0.4.x</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>common-security</artifactId>
|
|
<version>0.4.x</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>mybatis</artifactId>
|
|
<groupId>org.mybatis</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>generic</artifactId>
|
|
<version>0.4.x</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>
|
|
|
|
<!-- tools 模块包含了 common 和 logging 模块 -->
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>box</artifactId>
|
|
<version>0.4.x</version>
|
|
</dependency>
|
|
|
|
<!--Mysql依赖包-->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<!-- quartz -->
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
</dependency>
|
|
<!--web 模块-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct</artifactId>
|
|
<version>${mapstruct.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
<version>${mapstruct.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>common-mybatis</artifactId>
|
|
<version>0.4.x</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.platform</groupId>
|
|
<artifactId>common-log</artifactId>
|
|
<version>0.4.x</version>
|
|
</dependency>
|
|
<!-- druid数据源驱动 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |