193 lines
5.9 KiB
XML
193 lines
5.9 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>cloud-etl-source</artifactId>
|
||
<version>1.0.0</version>
|
||
</parent>
|
||
|
||
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-etl-server</artifactId>
|
||
<version>1.0.0</version>
|
||
|
||
|
||
<dependencies>
|
||
|
||
<dependency>
|
||
<groupId>com.zaxxer</groupId>
|
||
<artifactId>HikariCP</artifactId>
|
||
<version>4.0.3</version>
|
||
</dependency>
|
||
|
||
<!-- //连接池依赖-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.alibaba</groupId>-->
|
||
<!-- <artifactId>druid</artifactId>-->
|
||
<!-- <version>1.2.7</version> <!– 根据实际情况选择版本 –>-->
|
||
<!-- </dependency>-->
|
||
|
||
|
||
|
||
|
||
<!-- oracle 数据源连接-->
|
||
<dependency>
|
||
<groupId>com.oracle.database.jdbc</groupId>
|
||
<artifactId>ojdbc8</artifactId>
|
||
<version>19.3.0.0</version> <!-- 请使用适合你的Oracle数据库版本的驱动 -->
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>redis.clients</groupId>
|
||
<artifactId>jedis</artifactId>
|
||
<version>2.9.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-core</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-etl-common</artifactId>
|
||
<version>1.0.0</version>
|
||
</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>
|
||
|
||
<!-- Mysql Connector -->
|
||
<dependency>
|
||
<groupId>com.mysql</groupId>
|
||
<artifactId>mysql-connector-j</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MuYu Common DataSource -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-datasource</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MuYu Common DataScope -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-datascope</artifactId>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-log</artifactId>
|
||
<version>3.6.3</version>
|
||
</dependency>
|
||
|
||
<!-- 接口模块 -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-api-doc</artifactId>
|
||
</dependency>
|
||
|
||
<!-- XllJob定时任务 -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-xxl</artifactId>
|
||
<version>3.6.3</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-security</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-datasource</artifactId>
|
||
</dependency>
|
||
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.muyu</groupId>-->
|
||
<!-- <artifactId>cloud-common-rabbit</artifactId>-->
|
||
<!-- <version>1.0.0</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.baomidou</groupId>-->
|
||
<!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
|
||
<!-- <version>3.5.3.1</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.baomidou</groupId>-->
|
||
<!-- <artifactId>mybatis-plus-core</artifactId>-->
|
||
<!-- <version>3.5.3</version> <!– 请根据实际需要选择版本 –>-->
|
||
<!-- </dependency>-->
|
||
|
||
|
||
</dependencies>
|
||
|
||
<properties>
|
||
<maven.compiler.source>1.8</maven.compiler.source>
|
||
<maven.compiler.target>1.8</maven.compiler.target>
|
||
<maven.compiler.arguments>-parameters</maven.compiler.arguments>
|
||
</properties>
|
||
|
||
|
||
<build>
|
||
<finalName>cloud-source</finalName>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>3.2.6</version>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<!-- 加入maven deploy插件,当在deploy时,忽略些model-->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>3.1.2</version>
|
||
<configuration>
|
||
<skip>true</skip>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
</project>
|