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.
77 lines
2.4 KiB
77 lines
2.4 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>com.codingapi</groupId> |
|
<artifactId>tx-manager</artifactId> |
|
<version>4.2.0-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
|
|
<name>tx-manager</name> |
|
<description>tx-manager</description> |
|
|
|
<parent> |
|
<groupId>com.codingapi</groupId> |
|
<artifactId>tx-lcn</artifactId> |
|
<version>4.2.0-SNAPSHOT</version> |
|
</parent> |
|
|
|
<properties> |
|
<guava.version>19.0</guava.version> |
|
<maven.deploy.skip>true</maven.deploy.skip> |
|
<maven.install.skip>true</maven.install.skip> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>com.github.1991wangliang</groupId> |
|
<artifactId>lorne_core</artifactId> |
|
<version>1.0.0</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>*</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
|
|
<dependency> |
|
<groupId>io.netty</groupId> |
|
<artifactId>netty-all</artifactId> |
|
<version>4.1.12.Final</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-redis</artifactId> |
|
<version>1.3.8.RELEASE</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.guava</groupId> |
|
<artifactId>guava</artifactId> |
|
<version>${guava.version}</version> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|