160 lines
5.7 KiB
XML
160 lines
5.7 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.sdm</groupId>
|
||
<artifactId>SDM</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</parent>
|
||
<artifactId>project</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<name>project</name>
|
||
<description>project</description>
|
||
<properties>
|
||
<java.version>17</java.version>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<spring-boot.version>3.3.5</spring-boot.version>
|
||
</properties>
|
||
<dependencies>
|
||
<!-- 引入模块common -->
|
||
<dependency>
|
||
<groupId>com.sdm</groupId>
|
||
<artifactId>common</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>*</groupId>
|
||
<artifactId>*</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<!-- FTP -->
|
||
<dependency>
|
||
<groupId>commons-net</groupId>
|
||
<artifactId>commons-net</artifactId>
|
||
<version>3.11.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
<version>3.14.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.aspectj</groupId>
|
||
<artifactId>aspectjweaver</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.annotation</groupId>
|
||
<artifactId>javax.annotation-api</artifactId>
|
||
<version>1.3.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
<version>4.10.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
</dependency>
|
||
<!-- Actuator for health checks -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.auth0</groupId>
|
||
<artifactId>java-jwt</artifactId>
|
||
<version>4.4.0</version>
|
||
</dependency>
|
||
|
||
<!--外部系统交互-->
|
||
<dependency>
|
||
<groupId>com.sdm</groupId>
|
||
<artifactId>outbridge</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>*</groupId>
|
||
<artifactId>*</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.quartz-scheduler</groupId>-->
|
||
<!-- <artifactId>quartz</artifactId>-->
|
||
<!-- <version>2.5.0</version>-->
|
||
<!-- </dependency>-->
|
||
<!-- <!– Spring整合Quartz(如果是Spring/SpringBoot项目) –>-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.springframework</groupId>-->
|
||
<!-- <artifactId>spring-context-support</artifactId>-->
|
||
<!-- <version>6.1.14</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
|
||
|
||
</dependencies>
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-dependencies</artifactId>
|
||
<version>${spring-boot.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<configuration>
|
||
<excludes>
|
||
<exclude>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
</exclude>
|
||
</excludes>
|
||
<includeSystemScope>true</includeSystemScope>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
<!-- <resources>-->
|
||
<!-- <resource>-->
|
||
<!-- <directory>src/main/resources</directory>-->
|
||
<!-- </resource>-->
|
||
<!-- <resource>-->
|
||
<!-- <directory>libs</directory>-->
|
||
<!-- <targetPath>BOOT-INF/lib/</targetPath>-->
|
||
<!-- <includes>-->
|
||
<!-- <include>*.jar</include>-->
|
||
<!-- </includes>-->
|
||
<!-- </resource>-->
|
||
<!-- </resources>-->
|
||
</build>
|
||
|
||
</project> |