149 lines
4.8 KiB
XML
149 lines
4.8 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>mosty-dyga-cloud</artifactId>
|
|||
|
<groupId>com.mosty</groupId>
|
|||
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
</parent>
|
|||
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|||
|
<artifactId>mosty-other</artifactId>
|
|||
|
<description>三方数据抽取中心</description>
|
|||
|
|
|||
|
<properties>
|
|||
|
<maven.compiler.source>8</maven.compiler.source>
|
|||
|
<maven.compiler.target>8</maven.compiler.target>
|
|||
|
</properties>
|
|||
|
|
|||
|
<dependencies>
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-starter</artifactId>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-starter-test</artifactId>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.cloud</groupId>
|
|||
|
<artifactId>spring-cloud-starter</artifactId>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>mysql</groupId>
|
|||
|
<artifactId>mysql-connector-java</artifactId>
|
|||
|
<version>8.0.16</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>com.oracle</groupId>
|
|||
|
<artifactId>ojdbc6</artifactId>
|
|||
|
<version>11.2.0.3</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.postgresql</groupId>
|
|||
|
<artifactId>postgresql</artifactId>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>com.alibaba.cloud</groupId>
|
|||
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|||
|
<version>2.2.4.RELEASE</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.cloud</groupId>
|
|||
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<!--magicAPI-->
|
|||
|
<dependency>
|
|||
|
<groupId>com.mosty</groupId>
|
|||
|
<artifactId>common-magic-api-starter</artifactId>
|
|||
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
<scope>compile</scope>
|
|||
|
</dependency>
|
|||
|
<!--登录jar包-->
|
|||
|
<dependency>
|
|||
|
<groupId>com.mosty</groupId>
|
|||
|
<artifactId>common-token-starter</artifactId>
|
|||
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
</dependency>
|
|||
|
<!--redis包-->
|
|||
|
<dependency>
|
|||
|
<groupId>com.mosty</groupId>
|
|||
|
<artifactId>common-redis-starter</artifactId>
|
|||
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
</dependency>
|
|||
|
<!--base-feign-->
|
|||
|
<dependency>
|
|||
|
<groupId>com.mosty</groupId>
|
|||
|
<artifactId>mosty-base-feign-sdk</artifactId>
|
|||
|
</dependency>
|
|||
|
<!--日志包-->
|
|||
|
<dependency>
|
|||
|
<groupId>com.mosty</groupId>
|
|||
|
<artifactId>operation-log-aspect-starter</artifactId>
|
|||
|
<version>1.0.0-SNAPSHOT</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>com.vividsolutions</groupId>
|
|||
|
<artifactId>jts</artifactId>
|
|||
|
<version>1.13</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>com.baomidou</groupId>
|
|||
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|||
|
<version>3.4.1</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>com.alibaba</groupId>
|
|||
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|||
|
<version>1.1.10</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
</dependencies>
|
|||
|
|
|||
|
<build>
|
|||
|
<plugins>
|
|||
|
<!-- 这个插件,可以将应用打包成一个可执行的jar包;-->
|
|||
|
<plugin>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
</plugin>
|
|||
|
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-compiler-plugin</artifactId>
|
|||
|
<configuration>
|
|||
|
<source>8</source>
|
|||
|
<target>8</target>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
|
|||
|
<resources>
|
|||
|
<resource>
|
|||
|
<directory>src/main/java</directory>
|
|||
|
<includes>
|
|||
|
<include>**/*.yml</include>
|
|||
|
<include>**/*.xml</include>
|
|||
|
</includes>
|
|||
|
</resource>
|
|||
|
<resource>
|
|||
|
<directory>src/main/resources</directory>
|
|||
|
<includes>
|
|||
|
<include>**/*.yml</include>
|
|||
|
<include>**/*.xml</include>
|
|||
|
</includes>
|
|||
|
<filtering>false</filtering>
|
|||
|
</resource>
|
|||
|
</resources>
|
|||
|
</build>
|
|||
|
|
|||
|
|
|||
|
</project>
|