2016-04-05 23:50:45 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-07-10 20:29:54 +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">
|
2016-04-05 23:50:45 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 23:50:45 +08:00
|
|
|
<artifactId>initializr</artifactId>
|
2019-01-31 00:13:17 +08:00
|
|
|
<version>${revision}</version>
|
2016-04-14 21:01:14 +08:00
|
|
|
<packaging>pom</packaging>
|
2016-04-05 23:50:45 +08:00
|
|
|
<name>Spring Initializr</name>
|
|
|
|
<description>A web-based quickstart generator for Spring projects</description>
|
2016-04-14 21:01:14 +08:00
|
|
|
<url>https://github.com/spring-io/initializr</url>
|
|
|
|
<organization>
|
|
|
|
<name>Pivotal Software, Inc.</name>
|
|
|
|
<url>http://www.spring.io</url>
|
|
|
|
</organization>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License, Version 2.0</name>
|
2019-03-21 00:34:50 +08:00
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
2016-04-14 21:01:14 +08:00
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/spring-io/initializr</connection>
|
|
|
|
<url>https://github.com/spring-io/initializr</url>
|
|
|
|
</scm>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>snicoll</id>
|
|
|
|
<name>Stephane Nicoll</name>
|
|
|
|
<email>snicoll at pivotal.io</email>
|
|
|
|
<organization>Pivotal Software, Inc.</organization>
|
|
|
|
<organizationUrl>http://www.spring.io</organizationUrl>
|
|
|
|
<roles>
|
|
|
|
<role>Project lead</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2016-04-05 23:50:45 +08:00
|
|
|
|
|
|
|
<properties>
|
2019-01-31 17:42:34 +08:00
|
|
|
<revision>0.8.0.BUILD-SNAPSHOT</revision>
|
2018-08-01 00:12:46 +08:00
|
|
|
<disable.checks>false</disable.checks>
|
2018-08-01 00:08:21 +08:00
|
|
|
<main.basedir>${basedir}</main.basedir>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-04-05 23:50:45 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>initializr-actuator</module>
|
2019-08-15 13:53:46 +08:00
|
|
|
<module>initializr-bom</module>
|
2018-07-10 20:21:07 +08:00
|
|
|
<module>initializr-docs</module>
|
2016-04-05 23:50:45 +08:00
|
|
|
<module>initializr-generator</module>
|
2019-02-07 23:35:20 +08:00
|
|
|
<module>initializr-generator-spring</module>
|
2019-02-07 19:28:12 +08:00
|
|
|
<module>initializr-metadata</module>
|
2019-08-15 13:53:46 +08:00
|
|
|
<module>initializr-parent</module>
|
2019-03-20 21:11:46 +08:00
|
|
|
<module>initializr-service-sample</module>
|
2019-06-21 22:51:43 +08:00
|
|
|
<module>initializr-version-resolver</module>
|
2016-04-05 23:50:45 +08:00
|
|
|
<module>initializr-web</module>
|
|
|
|
</modules>
|
|
|
|
|
2016-06-30 22:06:44 +08:00
|
|
|
<profiles>
|
2018-07-11 19:59:55 +08:00
|
|
|
<profile>
|
|
|
|
<id>m2e</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>m2e.version</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<!-- 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>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-checkstyle-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[3.0.0,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2019-02-19 17:57:14 +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/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2018-07-11 19:59:55 +08:00
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2018-08-01 00:12:46 +08:00
|
|
|
<profile>
|
|
|
|
<id>fast</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>fast</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<disable.checks>true</disable.checks>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2016-06-30 22:06:44 +08:00
|
|
|
</profiles>
|
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
</project>
|