2014-03-04 14:46:12 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-03-22 03:36:16 +08:00
|
|
|
<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">
|
2013-07-11 07:20:57 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-08-03 12:48:19 +08:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
2014-03-04 14:46:12 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
<relativePath>../../spring-boot-dependencies</relativePath>
|
|
|
|
|
</parent>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2013-07-11 07:20:57 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<properties>
|
2013-08-06 05:25:39 +08:00
|
|
|
<java.version>1.6</java.version>
|
2014-02-28 16:27:21 +08:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2014-03-04 16:06:27 +08:00
|
|
|
<spring-boot.version>1.0.0.BUILD-SNAPSHOT</spring-boot.version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</properties>
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
2013-08-19 22:36:02 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<!-- Starters use SLF4J -->
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-08-05 19:43:24 +08:00
|
|
|
<artifactId>spring-boot</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
2013-11-19 21:29:31 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-11-19 21:29:31 +08:00
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 16:46:34 +08:00
|
|
|
<artifactId>spring-boot-actuator</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-19 21:29:31 +08:00
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-09-11 20:14:49 +08:00
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-09-11 20:14:49 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 16:46:34 +08:00
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
2013-09-13 02:53:57 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-batch</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-09-13 02:53:57 +08:00
|
|
|
</dependency>
|
2013-10-31 20:13:10 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-10-31 20:13:10 +08:00
|
|
|
</dependency>
|
2014-01-27 02:25:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2014-01-27 02:25:45 +08:00
|
|
|
</dependency>
|
2014-02-27 18:33:44 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-rest</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2014-02-27 18:33:44 +08:00
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-integration</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
2013-07-17 19:00:58 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-jetty</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-17 19:00:58 +08:00
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
2013-12-17 01:18:28 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-12-17 01:18:28 +08:00
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-mobile</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
2013-11-19 21:29:31 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-11-19 21:29:31 +08:00
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2014-03-22 00:05:56 +08:00
|
|
|
<artifactId>spring-boot-starter-remote-shell</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
2013-11-05 00:16:17 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-11-05 00:16:17 +08:00
|
|
|
</dependency>
|
2014-01-24 17:28:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2014-01-24 17:28:45 +08:00
|
|
|
</dependency>
|
2013-08-21 19:15:09 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-08-21 19:15:09 +08:00
|
|
|
</dependency>
|
2013-11-05 14:05:08 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-11-07 23:40:33 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-11-07 23:40:33 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
2014-03-22 03:36:16 +08:00
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
2013-11-05 14:05:08 +08:00
|
|
|
</dependency>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2013-08-05 19:43:24 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- Generally Useful Test Dependencies -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2013-07-11 07:20:57 +08:00
|
|
|
<build>
|
2013-08-03 12:48:19 +08:00
|
|
|
<!-- Turn on filtering by default for application properties -->
|
2013-07-18 16:16:36 +08:00
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/application.yml</include>
|
2013-10-11 20:23:26 +08:00
|
|
|
<include>**/application.properties</include>
|
2013-07-18 16:16:36 +08:00
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/application.yml</exclude>
|
2013-10-11 20:23:26 +08:00
|
|
|
<exclude>**/application.properties</exclude>
|
2013-07-18 16:16:36 +08:00
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2013-07-11 07:20:57 +08:00
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2013-08-03 12:48:19 +08:00
|
|
|
<!-- Apply more sensible defaults for user projects -->
|
2013-07-11 07:20:57 +08:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2013-07-20 00:30:45 +08:00
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
2013-07-11 07:20:57 +08:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.15</version>
|
2013-07-14 13:46:45 +08:00
|
|
|
<configuration>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*Tests.java</include>
|
|
|
|
|
<include>**/*Test.java</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/Abstract*.java</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2013-07-11 07:20:57 +08:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-07-20 00:30:45 +08:00
|
|
|
<configuration>
|
2013-07-22 20:38:00 +08:00
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
2013-07-20 00:30:45 +08:00
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
2013-07-11 07:20:57 +08:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
2013-11-25 22:17:57 +08:00
|
|
|
<mainClass>${start-class}</mainClass>
|
2013-08-03 12:48:19 +08:00
|
|
|
</configuration>
|
2013-07-11 07:20:57 +08:00
|
|
|
</plugin>
|
2013-07-18 16:16:36 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2013-12-18 14:13:31 +08:00
|
|
|
<version>2.1.7</version>
|
2013-07-18 16:16:36 +08:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<verbose>true</verbose>
|
|
|
|
|
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
|
|
|
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
|
|
<generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<!-- Support our own plugin -->
|
2013-07-18 09:10:49 +08:00
|
|
|
<plugin>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-27 00:54:59 +08:00
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2013-08-30 13:28:34 +08:00
|
|
|
<version>${spring-boot.version}</version>
|
2013-07-18 09:10:49 +08:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
2013-07-30 05:52:30 +08:00
|
|
|
<goal>repackage</goal>
|
2013-07-18 09:10:49 +08:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2013-07-23 17:51:11 +08:00
|
|
|
<configuration>
|
|
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
|
</configuration>
|
2013-07-18 09:10:49 +08:00
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<!-- Support shade packaging (if the user does not want to use our plugin -->
|
2013-07-11 07:20:57 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>2.1</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-30 05:52:30 +08:00
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2013-08-30 13:28:34 +08:00
|
|
|
<version>${spring-boot.version}</version>
|
2013-07-11 07:20:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<configuration>
|
|
|
|
|
<keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
|
|
|
|
|
<createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
|
|
<filters>
|
|
|
|
|
<filter>
|
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</filter>
|
|
|
|
|
</filters>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<transformers>
|
2014-03-22 03:36:16 +08:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
2013-07-11 07:20:57 +08:00
|
|
|
<resource>META-INF/spring.handlers</resource>
|
|
|
|
|
</transformer>
|
2014-03-22 03:36:16 +08:00
|
|
|
<transformer implementation="org.springframework.boot.maven.PropertiesMergingResourceTransformer">
|
2013-07-11 07:20:57 +08:00
|
|
|
<resource>META-INF/spring.factories</resource>
|
|
|
|
|
</transformer>
|
2014-03-22 03:36:16 +08:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
2013-07-11 07:20:57 +08:00
|
|
|
<resource>META-INF/spring.schemas</resource>
|
|
|
|
|
</transformer>
|
2014-03-22 03:36:16 +08:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2013-07-11 07:20:57 +08:00
|
|
|
<mainClass>${start-class}</mainClass>
|
|
|
|
|
</transformer>
|
|
|
|
|
</transformers>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
2014-03-04 14:46:12 +08:00
|
|
|
</project>
|