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.
125 lines
4.7 KiB
125 lines
4.7 KiB
12 months ago
|
<?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>
|
||
|
<groupId>com.dxhy.tool</groupId>
|
||
|
<artifactId>dxhy-parent</artifactId>
|
||
|
<version>2.0</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<version>5.0.3-20220328</version>
|
||
|
<artifactId>itax-sso-client</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<properties>
|
||
|
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
|
||
|
<fastjson.version>1.2.76</fastjson.version>
|
||
|
<slf4j-api.version>1.7.25</slf4j-api.version>
|
||
|
<jedis.version>3.0.0</jedis.version>
|
||
|
<lombok-version>1.18.6</lombok-version>
|
||
|
<!-- hibernate.validator版本-->
|
||
|
<hibernate.validator.version>6.1.6.Final</hibernate.validator.version>
|
||
|
<!-- hutool版本-->
|
||
|
<hutool.version>5.5.7</hutool.version>
|
||
|
<commons.codec.version>1.10</commons.codec.version>
|
||
|
<joda.time.version>2.9.9</joda.time.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.hibernate.validator</groupId>
|
||
|
<artifactId>hibernate-validator</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok-version}</version>
|
||
|
</dependency>
|
||
|
<!-- servlet -->
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
<version>${javax.servlet-api.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- slf4j -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-logging</artifactId>
|
||
|
<optional>true</optional>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-api</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-to-slf4j</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>redis.clients</groupId>
|
||
|
<artifactId>jedis</artifactId>
|
||
|
<version>${jedis.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>${fastjson.version}</version>
|
||
|
</dependency>
|
||
|
<!-- AES 加密 -->
|
||
|
<dependency>
|
||
|
<groupId>commons-codec</groupId>
|
||
|
<artifactId>commons-codec</artifactId>
|
||
|
<version>1.10</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-codec</groupId>
|
||
|
<artifactId>commons-codec</artifactId>
|
||
|
<version>${commons.codec.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-collections</groupId>
|
||
|
<artifactId>commons-collections</artifactId>
|
||
|
<version>3.2.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>joda-time</groupId>
|
||
|
<artifactId>joda-time</artifactId>
|
||
|
<version>${joda.time.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hibernate.validator</groupId>
|
||
|
<artifactId>hibernate-validator</artifactId>
|
||
|
<version>${hibernate.validator.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>${hutool.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>user-releases</id>
|
||
|
<name>releases</name>
|
||
|
<url>http://10.1.20.6:8081/nexus/content/repositories/releases</url>
|
||
|
</repository>
|
||
|
<snapshotRepository>
|
||
|
<id>user-snapshots</id>
|
||
|
<name>snapshots</name>
|
||
|
<url>http://10.1.20.6:8081/nexus/content/repositories/snapshots</url>
|
||
|
</snapshotRepository>
|
||
|
</distributionManagement>
|
||
|
</project>
|