You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.6 KiB
114 lines
3.6 KiB
<?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>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.3.1.RELEASE</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
<groupId>com.mh</groupId> |
|
<artifactId>garrison</artifactId> |
|
<version>1.0.0</version> |
|
<packaging>war</packaging> |
|
<name>garrison</name> |
|
<description>Demo project for Spring Boot</description> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>2.1.3</version> |
|
</dependency> |
|
<!-- 定时执行包 --> |
|
<!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz --> |
|
<!-- <dependency>--> |
|
<!-- <groupId>org.quartz-scheduler</groupId>--> |
|
<!-- <artifactId>quartz</artifactId>--> |
|
<!-- </dependency>--> |
|
<!-- https://mvnrepository.com/artifact/com.alibaba/druid --> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>druid</artifactId> |
|
<version>1.1.22</version> |
|
</dependency> |
|
<!-- <!– https://mvnrepository.com/artifact/org.wso2.apache.httpcomponents/httpclient –>--> |
|
<!-- <dependency>--> |
|
<!-- <groupId>org.wso2.apache.httpcomponents</groupId>--> |
|
<!-- <artifactId>httpclient</artifactId>--> |
|
<!-- <version>4.3.1.wso2v1</version>--> |
|
<!-- </dependency>--> |
|
<!-- <!– https://mvnrepository.com/artifact/org.wso2.apache.httpcomponents/httpmime –>--> |
|
<!-- <dependency>--> |
|
<!-- <groupId>org.wso2.apache.httpcomponents</groupId>--> |
|
<!-- <artifactId>httpmime</artifactId>--> |
|
<!-- <version>4.3.1.wso2v1</version>--> |
|
<!-- </dependency> --> |
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>1.2.72</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.microsoft.sqlserver</groupId> |
|
<artifactId>mssql-jdbc</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.junit.vintage</groupId> |
|
<artifactId>junit-vintage-engine</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<!-- 电信AEP平台SDK方式--> |
|
<dependency> |
|
<groupId>com.ctg.ag</groupId> |
|
<artifactId>ag-sdk-biz-60039.tar.gz</artifactId> |
|
<version>20210518.165353-SNAPSHOT</version> |
|
</dependency> |
|
<!-- 电信AEP平台SDK--> |
|
<dependency> |
|
<groupId>com.ctg.ag</groupId> |
|
<artifactId>ctg-ag-sdk-core</artifactId> |
|
<version>2.5.0-SNAPSHOT</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|