214 lines
7.2 KiB
XML
214 lines
7.2 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>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>ca-data</artifactId>
|
|
<version>2.5.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>adc-da-sys</artifactId>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>1.8</java.version>
|
|
<!--<spring.version>4.3.9.RELEASE</spring.version>-->
|
|
<mybatis.version>3.4.2</mybatis.version>
|
|
<shiro.version>1.4.0-RC2</shiro.version>
|
|
<aspectj.version>1.8.5</aspectj.version>
|
|
<org.apache.maven.plugins.version>3.7.0</org.apache.maven.plugins.version>
|
|
<ehcache.version>2.6.6</ehcache.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>adc</id>
|
|
<url>http://60.247.58.121:8182/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>thirdparty</id>
|
|
<name>Nexus Thirdparty Repository</name>
|
|
<url>http://60.247.58.121:8182/repository/thirdparty/</url>
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
<id>snapshots</id>
|
|
<name>User Project SNAPSHOTS</name>
|
|
<url>http://60.247.58.121:8182/repository/snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
<!--<dependency>-->
|
|
<!--<groupId>com.adc</groupId>-->
|
|
<!--<artifactId>adc-da-login</artifactId>-->
|
|
<!--<version>2.4.0</version>-->
|
|
<!--</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-swagger</artifactId>
|
|
<version>RELEASE</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>mailapi</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-base</artifactId>
|
|
<version>RELEASE</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>adc-da-util</artifactId>
|
|
<groupId>com.adc</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-util</artifactId>
|
|
<version>RELEASE</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.springframework</groupId>-->
|
|
<!--<artifactId>spring-tx</artifactId>-->
|
|
<!--<version>${spring.version}</version>-->
|
|
<!--</dependency>-->
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.springframework</groupId>-->
|
|
<!--<artifactId>spring-web</artifactId>-->
|
|
<!--<version>${spring.version}</version>-->
|
|
<!--</dependency>-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>logback-classic</artifactId>
|
|
<groupId>ch.qos.logback</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
<version>2.0.1.Final</version>
|
|
</dependency>
|
|
<!-- SECURITY begin -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-core</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
<!-- SECURITY end -->
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>${aspectj.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-file</artifactId>
|
|
<version>2.0.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>adc-da-util</artifactId>
|
|
<groupId>com.adc</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>adc-da-sys</artifactId>
|
|
<groupId>com.adc</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.adc</groupId>
|
|
<artifactId>adc-da-excel</artifactId>
|
|
<version>2.0.9</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache-core</artifactId>
|
|
<version>${ehcache.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache-web</artifactId>
|
|
<version>2.0.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>javax.mail</groupId>-->
|
|
<!-- <artifactId>mail</artifactId>-->
|
|
<!-- <version>1.4.7</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>java-jwt</artifactId>
|
|
<version>3.10.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.2.9</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${org.apache.maven.plugins.version}</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
<compilerVersion>${java.version}</compilerVersion>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|