168 lines
5.4 KiB
XML
168 lines
5.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>cloud-port</artifactId>
|
||
<version>1.0.0</version>
|
||
</parent>
|
||
|
||
<artifactId>cloud-port-server</artifactId>
|
||
<version>1.0.0</version>
|
||
|
||
<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>
|
||
|
||
<!-- 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>
|
||
|
||
<!-- MuYu Common Log -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-log</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 接口模块 -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-api-doc</artifactId>
|
||
</dependency>
|
||
|
||
<!-- XllJob定时任务 -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-common-xxl</artifactId>
|
||
</dependency>
|
||
|
||
<!--rabbit 公共依赖 -->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.muyu</groupId>-->
|
||
<!-- <artifactId>cloud-common-rabbit</artifactId>-->
|
||
<!-- </dependency>-->
|
||
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>cloud-port-common</artifactId>
|
||
<version>1.0.0</version>
|
||
</dependency>
|
||
<!-- 手机号归属地-->
|
||
<dependency>
|
||
<groupId>commons-beanutils</groupId>
|
||
<artifactId>commons-beanutils</artifactId>
|
||
<version>1.9.3</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>commons-lang</groupId>
|
||
<artifactId>commons-lang</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-logging</groupId>
|
||
<artifactId>commons-logging</artifactId>
|
||
<version>1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.sf.json-lib</groupId>
|
||
<artifactId>json-lib</artifactId>
|
||
<version>2.4</version>
|
||
<classifier>jdk13</classifier>
|
||
</dependency>
|
||
<!-- 老黄历-->
|
||
<dependency>
|
||
<groupId>net.sf.json-lib</groupId>
|
||
<artifactId>json-lib</artifactId>
|
||
<version>2.2.3</version>
|
||
<classifier>jdk15</classifier>
|
||
</dependency>
|
||
<!-- FastDFS -->
|
||
|
||
<dependency>
|
||
<groupId>com.github.tobato</groupId>
|
||
<artifactId>fastdfs-client</artifactId>
|
||
<version>1.26.5</version>
|
||
</dependency>
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.muyu</groupId>-->
|
||
<!-- <artifactId>cloud-common-nacos-remote</artifactId>-->
|
||
<!-- </dependency>-->
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>cloud-port</finalName>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
|
||
</plugin>
|
||
<!-- 加入maven deploy插件,当在deploy时,ll忽略些model-->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>2.8.2</version>
|
||
<configuration>
|
||
<skip>true</skip>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
|
||
</build>
|
||
|
||
|
||
</project>
|