332 lines
12 KiB
XML
332 lines
12 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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.tourbida</groupId>
|
|
<artifactId>ggw-merchant-system</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>ggw merchant system</description>
|
|
<url>http://www.tourbida.com</url>
|
|
<inceptionYear>2017</inceptionYear>
|
|
|
|
<organization>
|
|
<name>Tourbida Technology</name>
|
|
<url>http://www.tourbida.com</url>
|
|
</organization>
|
|
|
|
<properties>
|
|
|
|
<!-- stormragetech libs -->
|
|
<stormragetch.version>1.0.0-SNAPSHOT</stormragetch.version>
|
|
|
|
<!-- xwd libs -->
|
|
<xwd.version>1.0.0-SNAPSHOT</xwd.version>
|
|
<tourbida.version>1.0.0-SNAPSHOT</tourbida.version>
|
|
|
|
<!-- lombok libs -->
|
|
<lombok.version>1.16.16</lombok.version>
|
|
|
|
<!-- Log libs -->
|
|
<slf4j.version>1.7.25</slf4j.version>
|
|
<log4j.version>2.9.0</log4j.version>
|
|
|
|
<!-- junit libs -->
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<!-- aspectj libs -->
|
|
<aspectj.version>1.8.7</aspectj.version>
|
|
|
|
<!-- spring libs -->
|
|
<spring.version>4.3.3.RELEASE</spring.version>
|
|
|
|
<!-- datasource libs -->
|
|
<mysql.version>6.0.6</mysql.version>
|
|
<druid.version>1.1.1</druid.version>
|
|
|
|
<!-- redis libs -->
|
|
<jedis.version>2.9.0</jedis.version>
|
|
|
|
<!-- Dubbo libs -->
|
|
<dubbo.version>2.5.3</dubbo.version>
|
|
|
|
<!-- zookeeper libs -->
|
|
<zookeeper.version>3.4.8</zookeeper.version>
|
|
<zkclient.version>0.1</zkclient.version>
|
|
|
|
<!-- gson libs -->
|
|
<gson.version>2.6.2</gson.version>
|
|
|
|
<!-- distribution-sms-api -->
|
|
<sms.api>1.0.0-SNAPSHOT</sms.api>
|
|
|
|
<!-- for maven compiler plugin -->
|
|
<maven.compiler.plugin.version>3.7.0</maven.compiler.plugin.version>
|
|
<maven.surefire.plugin.version>2.20.1</maven.surefire.plugin.version>
|
|
<maven.jar.plugin.version>3.0.2</maven.jar.plugin.version>
|
|
<maven.dependency.plugin.version>3.0.0</maven.dependency.plugin.version>
|
|
<maven.deploy.plugin.version>2.8.2</maven.deploy.plugin.version>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- xwd libs -->
|
|
<dependency>
|
|
<groupId>com.xwdly</groupId>
|
|
<artifactId>xwd-common</artifactId>
|
|
<version>${xwd.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tourbida</groupId>
|
|
<artifactId>distribution-common</artifactId>
|
|
<version>${tourbida.version}</version>
|
|
</dependency>
|
|
|
|
<!-- lombok libs -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
|
|
<!-- log libs -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-web</artifactId>
|
|
<version>${log4j.version}</version>
|
|
</dependency>
|
|
|
|
<!-- aspectj libs -->
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjrt</artifactId>
|
|
<version>${aspectj.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>${aspectj.version}</version>
|
|
</dependency>
|
|
|
|
<!-- spring libs -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
|
|
<!-- redis libs -->
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
<version>${jedis.version}</version>
|
|
</dependency>
|
|
|
|
<!-- datasource libs -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
<!-- dubbo libs -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<version>${dubbo.version}</version>
|
|
</dependency>
|
|
|
|
<!-- zookeeper libs -->
|
|
<dependency>
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
<version>${zookeeper.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.sgroschupf</groupId>
|
|
<artifactId>zkclient</artifactId>
|
|
<version>${zkclient.version}</version>
|
|
</dependency>
|
|
|
|
<!-- test libs -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tourbida</groupId>
|
|
<artifactId>distribution-sms-api</artifactId>
|
|
<version>${sms.api}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven.compiler.plugin.version}</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>${file.encoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${maven.surefire.plugin.version}</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven.jar.plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>${maven.dependency.plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<overWriteReleases>false</overWriteReleases>
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
<outputDirectory>
|
|
${project.build.directory}/lib
|
|
</outputDirectory>
|
|
</configuration>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>${maven.deploy.plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>nexus-releases</id>
|
|
<name>Nexus Releases Repository</name>
|
|
<url>http://192.168.0.99:8081/repository/maven-releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>nexus-snapshots</id>
|
|
<name>Nexus Snapshots Repository</name>
|
|
<url>http://192.168.0.99:8081/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<modules>
|
|
<module>ggw-merchant-api</module>
|
|
<module>ggw-merchant-provider</module>
|
|
<module>ggw-merchant-consumer</module>
|
|
</modules>
|
|
</project> |