103 lines
3.4 KiB
XML
103 lines
3.4 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>ruoyi-data_transform</artifactId>
|
|
<version>3.6.3</version>
|
|
</parent>
|
|
|
|
<artifactId>ruoyi-data_transform-common</artifactId>
|
|
<description>ruoyi-data_transform-common数据转换公共模块</description>
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<dependencies>
|
|
<!-- MuYu 公共 安全模块 -->
|
|
<dependency>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>muyu-common-security</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MuYu 公共 swagger -->
|
|
<dependency>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>muyu-common-swagger</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Actuator -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Swagger UI -->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${swagger.fox.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Mysql Connector -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MuYu Common DataScope -->
|
|
<dependency>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>muyu-common-datascope</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MuYu Common Swagger -->
|
|
<dependency>
|
|
<groupId>com.muyu</groupId>
|
|
<artifactId>muyu-common-swagger</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Sql Server 驱动 -->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
<version>9.4.0.jre8</version>
|
|
</dependency>
|
|
|
|
<!-- 数据资产客户端模块 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-data_asset-client</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
|
|
<!-- 规则引擎客户端模块 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-rule_engine-client</artifactId>
|
|
<version>3.6.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|