2013-08-03 12:48:19 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-01-05 13:18:08 +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-08-03 12:48:19 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
<relativePath>../spring-boot-dependencies</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Parent</name>
|
|
|
|
<description>Spring Boot Parent</description>
|
|
|
|
<organization>
|
|
|
|
<name>Pivotal Software, Inc.</name>
|
2017-11-23 22:04:34 +08:00
|
|
|
<url>https://spring.io</url>
|
2014-04-01 16:10:51 +08:00
|
|
|
</organization>
|
2013-08-03 12:48:19 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
2015-09-10 21:23:20 +08:00
|
|
|
<disable.checks>false</disable.checks>
|
2016-07-26 02:08:21 +08:00
|
|
|
<java.version>1.8</java.version>
|
2013-08-03 12:48:19 +08:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2017-06-01 05:27:23 +08:00
|
|
|
<aether.version>1.0.2.v20150114</aether.version>
|
2014-02-17 18:58:22 +08:00
|
|
|
<maven.version>3.1.1</maven.version>
|
2017-05-04 15:52:55 +08:00
|
|
|
<spock.version>1.0-groovy-2.4</spock.version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</properties>
|
|
|
|
<scm>
|
2013-09-24 05:44:59 +08:00
|
|
|
<url>http://github.com/spring-projects/spring-boot</url>
|
|
|
|
<connection>scm:git:git://github.com/spring-projects/spring-boot.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-boot.git</developerConnection>
|
2013-08-03 12:48:19 +08:00
|
|
|
</scm>
|
2014-05-02 23:51:23 +08:00
|
|
|
<issueManagement>
|
|
|
|
<system>Github</system>
|
|
|
|
<url>https://github.com/spring-projects/spring-boot/issues</url>
|
|
|
|
</issueManagement>
|
2017-06-01 05:27:23 +08:00
|
|
|
<prerequisites>
|
|
|
|
<maven>3.5</maven>
|
|
|
|
</prerequisites>
|
2013-08-03 12:48:19 +08:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2017-06-01 05:27:23 +08:00
|
|
|
<!-- Internal unpublished Spring Boot dependencies -->
|
2017-02-08 21:38:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test-support</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2017-02-08 21:38:45 +08:00
|
|
|
</dependency>
|
2017-06-01 05:27:23 +08:00
|
|
|
<!-- Additional Spring Boot only Dependencies (not useful for users) -->
|
|
|
|
<dependency>
|
|
|
|
<!-- deprecated but recent version required by 3rd party libs -->
|
2016-01-25 20:43:36 +08:00
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.17</version>
|
|
|
|
</dependency>
|
2017-11-16 01:45:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nhaarman</groupId>
|
|
|
|
<artifactId>mockito-kotlin</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2016-07-13 23:40:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>2.7.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
2017-11-03 09:00:55 +08:00
|
|
|
<version>3.9.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>mockwebserver</artifactId>
|
|
|
|
<version>3.9.0</version>
|
2016-07-13 23:40:32 +08:00
|
|
|
</dependency>
|
2018-01-04 09:23:12 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
<version>1.5.1</version>
|
|
|
|
</dependency>
|
2017-01-05 13:18:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.vaadin.external.google</groupId>
|
|
|
|
<artifactId>android-json</artifactId>
|
|
|
|
<version>0.0.20131108.vaadin1</version>
|
|
|
|
</dependency>
|
2015-03-19 01:08:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.gradle</groupId>
|
|
|
|
<artifactId>dependency-management-plugin</artifactId>
|
2017-12-12 19:48:08 +08:00
|
|
|
<version>1.0.4.RELEASE</version>
|
2015-03-19 01:08:07 +08:00
|
|
|
</dependency>
|
2014-01-15 07:06:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
<version>2.11</version>
|
|
|
|
</dependency>
|
2013-08-03 12:48:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jopt-simple</groupId>
|
|
|
|
<artifactId>jopt-simple</artifactId>
|
2014-02-17 18:58:22 +08:00
|
|
|
<version>4.6</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</dependency>
|
2017-06-22 22:39:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<version>1.14</version>
|
|
|
|
</dependency>
|
2013-08-03 12:48:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ivy</groupId>
|
|
|
|
<artifactId>ivy</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
2013-10-14 21:19:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-aether-provider</artifactId>
|
2014-02-25 13:26:39 +08:00
|
|
|
<version>3.2.1</version>
|
2013-10-14 21:19:08 +08:00
|
|
|
</dependency>
|
2013-08-03 12:48:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-archiver</artifactId>
|
2015-03-28 00:45:59 +08:00
|
|
|
<version>2.6</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
2014-01-08 19:03:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings-builder</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
2014-05-06 20:54:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-common-artifact-filters</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
2013-08-03 12:48:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2013-12-18 14:13:31 +08:00
|
|
|
<version>2.2</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-archiver</artifactId>
|
2015-03-28 00:45:59 +08:00
|
|
|
<version>2.8.1</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2014-03-26 03:23:58 +08:00
|
|
|
<artifactId>plexus-component-api</artifactId>
|
|
|
|
<version>1.0-alpha-33</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>plexus-utils</artifactId>
|
2018-02-16 00:21:25 +08:00
|
|
|
<version>3.0.24</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</dependency>
|
2013-10-14 21:19:08 +08:00
|
|
|
<dependency>
|
2013-10-23 00:13:20 +08:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-api</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-connector-basic</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-impl</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-spi</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-transport-file</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-transport-http</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-util</artifactId>
|
|
|
|
<version>${aether.version}</version>
|
|
|
|
</dependency>
|
2016-12-23 21:20:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.plexus</groupId>
|
|
|
|
<artifactId>plexus-build-api</artifactId>
|
|
|
|
<version>0.0.7</version>
|
|
|
|
</dependency>
|
2017-05-04 15:52:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spockframework</groupId>
|
|
|
|
<artifactId>spock-core</artifactId>
|
|
|
|
<version>${spock.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spockframework</groupId>
|
|
|
|
<artifactId>spock-spring</artifactId>
|
|
|
|
<version>${spock.version}</version>
|
|
|
|
</dependency>
|
2013-08-03 12:48:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.zeroturnaround</groupId>
|
|
|
|
<artifactId>zt-zip</artifactId>
|
2013-12-18 14:13:31 +08:00
|
|
|
<version>1.7</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Generally Useful Test Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-07 06:47:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-08-03 12:48:19 +08:00
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2017-10-26 21:27:12 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
|
|
<version>${kotlin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<jvmTarget>${java.version}</jvmTarget>
|
2017-12-01 18:06:29 +08:00
|
|
|
<apiVersion>1.1</apiVersion>
|
|
|
|
<languageVersion>1.1</languageVersion>
|
2017-10-26 21:27:12 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-06-01 05:27:23 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
|
|
<version>1.5.5</version>
|
|
|
|
</plugin>
|
2015-09-06 01:45:54 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2018-01-26 01:48:29 +08:00
|
|
|
<version>3.0.0</version>
|
2015-09-06 01:45:54 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2017-12-06 21:55:10 +08:00
|
|
|
<version>8.5</version>
|
2015-09-06 01:45:54 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2014-01-21 04:12:10 +08:00
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<plugin>
|
2014-05-02 23:51:23 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>3.5</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</plugin>
|
Support @Grab without a version or group
Usually, use of @Grab requires you to specify a group, module, and
version when identifying a dependency. This can be done in two
different ways:
@Grab(group='alpha', module='bravo', version='1.0.0')
@Grab('alpha:bravo:1.0.0')
This commit allows users to only specify a module: the group is
inferred and the version is the one dictated by the boot CLI. Both
forms are supported:
@Grab(module='bravo')
@Grab('bravo')
Groovy's global AST transformations, which is how Grab is implemented,
do not support ordering and we need to augment the AST for the Grab
annotation before its processed by the Grab AST transformation. To
work around this, reflection is used to get hold of the compile
operations in the conversion phase, and a new AST transformation is
inserted immediately before the first AST transformation operation.
To allow a module's groupId and version to be resolved consistently,
META-INF/springcli.properties has been enhanced to include properties
for each module that we want to support in the following form:
<module>.groudId = <groudId>
<module>.version = <version>
<groupId> and <version> are taken from the Maven project's
dependencies and VPP, a Velocity-based pre-processor, is used to
automatically generate the enhanced properties file.
To prevent pollution of spring-boot-cli's class path with the
dependencies that are only required to populate springcli.properties,
a separate project, spring-boot-cli-properties, has been created.
spring-boot-cli depends upon this now project causing it to, via the
shade plug, include the properties file in its jar.
Previously DependencyCustomizer allow a dependency to be added by
specifying its full coordinates, i.e. a group ID, artifact ID, and
version. This commit updates DependencyCustomizer to only require
an artifact/module ID. The group ID and version are then resolved
using the same mechanism as the enhanced @Grab support.
[#56328644] [bs-312] Allow @Grab without version
2013-10-08 17:41:35 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
Support @Grab without a version or group
Usually, use of @Grab requires you to specify a group, module, and
version when identifying a dependency. This can be done in two
different ways:
@Grab(group='alpha', module='bravo', version='1.0.0')
@Grab('alpha:bravo:1.0.0')
This commit allows users to only specify a module: the group is
inferred and the version is the one dictated by the boot CLI. Both
forms are supported:
@Grab(module='bravo')
@Grab('bravo')
Groovy's global AST transformations, which is how Grab is implemented,
do not support ordering and we need to augment the AST for the Grab
annotation before its processed by the Grab AST transformation. To
work around this, reflection is used to get hold of the compile
operations in the conversion phase, and a new AST transformation is
inserted immediately before the first AST transformation operation.
To allow a module's groupId and version to be resolved consistently,
META-INF/springcli.properties has been enhanced to include properties
for each module that we want to support in the following form:
<module>.groudId = <groudId>
<module>.version = <version>
<groupId> and <version> are taken from the Maven project's
dependencies and VPP, a Velocity-based pre-processor, is used to
automatically generate the enhanced properties file.
To prevent pollution of spring-boot-cli's class path with the
dependencies that are only required to populate springcli.properties,
a separate project, spring-boot-cli-properties, has been created.
spring-boot-cli depends upon this now project causing it to, via the
shade plug, include the properties file in its jar.
Previously DependencyCustomizer allow a dependency to be added by
specifying its full coordinates, i.e. a group ID, artifact ID, and
version. This commit updates DependencyCustomizer to only require
an artifact/module ID. The group ID and version are then resolved
using the same mechanism as the enhanced @Grab support.
[#56328644] [bs-312] Allow @Grab without version
2013-10-08 17:41:35 +08:00
|
|
|
</plugin>
|
2014-05-02 23:51:23 +08:00
|
|
|
<plugin>
|
2017-06-01 05:27:23 +08:00
|
|
|
<groupId>org.basepom.maven</groupId>
|
|
|
|
<artifactId>duplicate-finder-maven-plugin</artifactId>
|
|
|
|
<version>1.2.1</version>
|
2014-05-02 23:51:23 +08:00
|
|
|
</plugin>
|
2014-12-08 04:22:57 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.cargo</groupId>
|
|
|
|
<artifactId>cargo-maven2-plugin</artifactId>
|
2017-08-05 03:44:16 +08:00
|
|
|
<version>1.6.4</version>
|
2014-12-08 04:22:57 +08:00
|
|
|
</plugin>
|
2014-06-07 13:14:51 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.gmavenplus</groupId>
|
|
|
|
<artifactId>gmavenplus-plugin</artifactId>
|
2017-08-05 03:44:16 +08:00
|
|
|
<version>1.5</version>
|
2014-06-07 13:14:51 +08:00
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>sonar-maven-plugin</artifactId>
|
2017-08-05 03:44:16 +08:00
|
|
|
<version>3.3.0.603</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
</plugin>
|
2013-10-28 20:34:29 +08:00
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings
|
|
|
|
only. It has no influence on the Maven build itself. -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
2017-06-01 05:27:23 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.basepom.maven</groupId>
|
|
|
|
<artifactId>duplicate-finder-maven-plugin</artifactId>
|
|
|
|
<versionRange>[1,2)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore />
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2013-10-28 20:34:29 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-enforcer-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[1.3.1,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
2014-01-22 02:56:09 +08:00
|
|
|
<goal>enforce</goal>
|
2013-10-28 20:34:29 +08:00
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2014-02-14 05:18:56 +08:00
|
|
|
<ignore />
|
2013-10-28 20:34:29 +08:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-dependency-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[2.8,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2014-02-14 05:18:56 +08:00
|
|
|
<ignore />
|
2013-10-28 20:34:29 +08:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2014-07-03 05:07:16 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-plugin-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[3.2,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>descriptor</goal>
|
2015-10-08 04:52:22 +08:00
|
|
|
<goal>helpmojo</goal>
|
2014-07-03 05:07:16 +08:00
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2014-07-08 17:33:36 +08:00
|
|
|
<ignore />
|
2014-07-03 05:07:16 +08:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2014-12-06 15:04:22 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.codehaus.mojo
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
build-helper-maven-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[1.9.1,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>
|
|
|
|
reserve-network-port
|
|
|
|
</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2014-12-11 08:35:50 +08:00
|
|
|
<ignore />
|
2014-12-06 15:04:22 +08:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2015-09-22 19:42:44 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-checkstyle-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[2.16,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>
|
|
|
|
check
|
|
|
|
</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore />
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2016-01-12 18:17:21 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-invoker-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[1.0.0,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>
|
|
|
|
install
|
|
|
|
</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore />
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2017-06-01 05:27:23 +08:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.codehaus.mojo
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
flatten-maven-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[1.0.0,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>flatten</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore></ignore>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2013-10-28 20:34:29 +08:00
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
2018-02-22 08:01:59 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>regex-property</id>
|
|
|
|
<goals>
|
|
|
|
<goal>regex-property</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<name>modulename</name>
|
2018-02-23 21:32:54 +08:00
|
|
|
<value>${project.artifactId}</value>
|
2018-02-22 08:01:59 +08:00
|
|
|
<regex>-</regex>
|
|
|
|
<replacement>.</replacement>
|
|
|
|
<failIfNoMatch>true</failIfNoMatch>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-06-01 05:27:23 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<!-- Tidy up all POMs before they are published -->
|
|
|
|
<id>flatten</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>flatten</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
<flattenMode>oss</flattenMode>
|
|
|
|
<pomElements>
|
|
|
|
<parent>expand</parent>
|
|
|
|
<distributionManagement>remove</distributionManagement>
|
|
|
|
<repositories>remove</repositories>
|
|
|
|
</pomElements>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-09-06 01:45:54 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>checkstyle-validation</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<configuration>
|
2015-09-10 21:23:20 +08:00
|
|
|
<skip>${disable.checks}</skip>
|
2015-09-10 15:40:26 +08:00
|
|
|
<configLocation>src/checkstyle/checkstyle.xml</configLocation>
|
|
|
|
<suppressionsLocation>src/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
|
|
|
|
<headerLocation>src/checkstyle/checkstyle-header.txt</headerLocation>
|
2017-03-13 13:27:49 +08:00
|
|
|
<propertyExpansion>main.basedir=${main.basedir}</propertyExpansion>
|
2015-09-06 01:45:54 +08:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
2017-03-29 02:58:11 +08:00
|
|
|
<failOnViolation>true</failOnViolation>
|
2015-09-06 01:45:54 +08:00
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2017-07-31 16:15:56 +08:00
|
|
|
<parameters>true</parameters>
|
2013-08-03 12:48:19 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useProjectReferences>false</useProjectReferences>
|
|
|
|
<additionalConfig>
|
|
|
|
<file>
|
|
|
|
<name>.settings/org.eclipse.jdt.ui.prefs</name>
|
|
|
|
<location>${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs</location>
|
|
|
|
</file>
|
|
|
|
<file>
|
|
|
|
<name>.settings/org.eclipse.jdt.core.prefs</name>
|
|
|
|
<location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location>
|
|
|
|
</file>
|
|
|
|
</additionalConfig>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-08-30 13:28:34 +08:00
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-30 13:28:34 +08:00
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2013-10-28 20:34:29 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-rules</id>
|
|
|
|
<goals>
|
2014-01-22 02:56:09 +08:00
|
|
|
<goal>enforce</goal>
|
2013-10-28 20:34:29 +08:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireJavaVersion>
|
2015-06-12 21:42:22 +08:00
|
|
|
<version>[1.8,)</version>
|
2013-10-28 20:34:29 +08:00
|
|
|
</requireJavaVersion>
|
2014-06-01 21:04:07 +08:00
|
|
|
<requireProperty>
|
|
|
|
<property>main.basedir</property>
|
|
|
|
</requireProperty>
|
|
|
|
<requireProperty>
|
|
|
|
<property>project.name</property>
|
|
|
|
</requireProperty>
|
|
|
|
<requireProperty>
|
|
|
|
<property>project.description</property>
|
|
|
|
</requireProperty>
|
2017-06-01 05:27:23 +08:00
|
|
|
<requireReleaseDeps>
|
|
|
|
<onlyWhenRelease>true</onlyWhenRelease>
|
|
|
|
</requireReleaseDeps>
|
2013-10-28 20:34:29 +08:00
|
|
|
</rules>
|
2014-05-29 06:00:29 +08:00
|
|
|
<fail>true</fail>
|
2013-10-28 20:34:29 +08:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2013-08-30 13:28:34 +08:00
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
2018-02-22 08:01:59 +08:00
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
2013-08-03 12:48:19 +08:00
|
|
|
<manifest>
|
2018-02-22 08:01:59 +08:00
|
|
|
<addDefaultImplementationEntries>false</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
|
2013-08-03 12:48:19 +08:00
|
|
|
</manifest>
|
2018-02-22 08:01:59 +08:00
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Title>${project.name}</Implementation-Title>
|
|
|
|
<Automatic-Module-Name>${modulename}</Automatic-Module-Name>
|
|
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
<Built-By>Spring</Built-By>
|
|
|
|
</manifestEntries>
|
2013-08-03 12:48:19 +08:00
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/*Tests.java</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/Abstract*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<java.security.egd>file:/dev/./urandom</java.security.egd>
|
2014-01-14 14:41:17 +08:00
|
|
|
<java.awt.headless>true</java.awt.headless>
|
2013-08-03 12:48:19 +08:00
|
|
|
</systemPropertyVariables>
|
2015-07-14 21:56:20 +08:00
|
|
|
<argLine>-Xmx1024m</argLine>
|
2017-06-29 08:39:35 +08:00
|
|
|
<trimStackTrace>false</trimStackTrace>
|
2017-06-01 05:27:23 +08:00
|
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
|
|
<runOrder>alphabetical</runOrder>
|
2013-08-03 12:48:19 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
</plugin>
|
2014-05-22 22:56:24 +08:00
|
|
|
<plugin>
|
2015-09-06 01:45:54 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-05-22 22:56:24 +08:00
|
|
|
</plugin>
|
2013-08-03 12:48:19 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
2015-09-10 21:23:20 +08:00
|
|
|
<profile>
|
|
|
|
<id>fast</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>fast</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<disable.checks>true</disable.checks>
|
|
|
|
</properties>
|
2015-09-05 13:14:29 +08:00
|
|
|
</profile>
|
|
|
|
<profile>
|
2017-06-01 05:27:23 +08:00
|
|
|
<id>full</id>
|
2015-09-05 13:14:29 +08:00
|
|
|
<activation>
|
|
|
|
<property>
|
2017-06-01 05:27:23 +08:00
|
|
|
<name>full</name>
|
2015-09-05 13:14:29 +08:00
|
|
|
</property>
|
|
|
|
</activation>
|
2013-08-30 13:28:34 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-05-03 06:03:31 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-30 13:28:34 +08:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
2013-09-04 14:44:32 +08:00
|
|
|
<inherited>true</inherited>
|
2013-08-30 13:28:34 +08:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-03-03 05:14:26 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.7</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-08-30 13:28:34 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-06-10 23:25:31 +08:00
|
|
|
</profile>
|
|
|
|
<profile>
|
2017-06-01 05:27:23 +08:00
|
|
|
<id>eclipse.profile</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>m2e.version</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<m2e.jaxrs.activation>false</m2e.jaxrs.activation>
|
|
|
|
<m2e.jpa.activation>false</m2e.jpa.activation>
|
|
|
|
<m2e.jsf.activation>false</m2e.jsf.activation>
|
|
|
|
<m2e.cdi.activation>false</m2e.cdi.activation>
|
|
|
|
</properties>
|
2013-08-30 13:28:34 +08:00
|
|
|
</profile>
|
2017-09-26 17:58:53 +08:00
|
|
|
<profile>
|
|
|
|
<id>java9</id>
|
|
|
|
<activation>
|
2018-03-02 23:28:03 +08:00
|
|
|
<jdk>[9,)</jdk>
|
2017-09-26 17:58:53 +08:00
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>--add-modules java.base,java.xml.bind</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2018-03-02 23:14:45 +08:00
|
|
|
<profile>
|
|
|
|
<id>java10</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>10</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2018-03-04 01:51:25 +08:00
|
|
|
<maven-failsafe-plugin.version>2.21.0-SNAPSHOT</maven-failsafe-plugin.version>
|
2018-03-03 05:13:06 +08:00
|
|
|
<maven-site-plugin.version>3.7</maven-site-plugin.version>
|
2018-03-02 23:14:45 +08:00
|
|
|
<maven-surefire-plugin.version>2.21.0-SNAPSHOT</maven-surefire-plugin.version>
|
|
|
|
</properties>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>apache-snapshots</id>
|
|
|
|
<url>https://repository.apache.org/content/groups/snapshots</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
</profile>
|
2013-08-03 12:48:19 +08:00
|
|
|
</profiles>
|
|
|
|
</project>
|