2019-08-15 13:53:46 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-08-18 20:07:02 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-08-15 13:53:46 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-bom</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../initializr-bom</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>initializr-parent</artifactId>
|
|
|
|
<name>Spring Initializr :: Parent</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
2022-11-08 14:52:59 +08:00
|
|
|
<java.version>17</java.version>
|
2021-08-21 13:22:24 +08:00
|
|
|
<commons-compress.version>1.21</commons-compress.version>
|
2022-10-19 14:30:27 +08:00
|
|
|
<commons-text.version>1.10.0</commons-text.version>
|
2022-01-21 19:03:57 +08:00
|
|
|
<maven-resolver.version>1.7.3</maven-resolver.version>
|
2022-07-20 21:42:34 +08:00
|
|
|
<maven-resolver-provider.version>3.8.6</maven-resolver-provider.version>
|
2022-11-08 15:51:10 +08:00
|
|
|
<spring-boot.version>3.0.0</spring-boot.version>
|
|
|
|
<spring-cloud-contract.version>4.0.0-RC1</spring-cloud-contract.version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</properties>
|
2019-10-06 01:32:42 +08:00
|
|
|
<scm>
|
|
|
|
<url>${git.url}</url>
|
|
|
|
<connection>${git.connection}</connection>
|
|
|
|
<developerConnection>${git.developerConnection}</developerConnection>
|
|
|
|
</scm>
|
2019-08-15 13:53:46 +08:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<version>${commons-compress.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>${commons-text.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-resolver-provider</artifactId>
|
2020-06-18 18:14:05 +08:00
|
|
|
<version>${maven-resolver-provider.version}</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
|
|
|
<version>${maven-resolver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-http</artifactId>
|
|
|
|
<version>${maven-resolver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-10-16 17:31:07 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-dependencies</artifactId>
|
|
|
|
<version>${spring-cloud-contract.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vaadin.external.google</groupId>
|
|
|
|
<artifactId>android-json</artifactId>
|
|
|
|
<version>0.0.20131108.vaadin1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<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>
|
|
|
|
</plugin>
|
|
|
|
<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>
|
|
|
|
<execution>
|
|
|
|
<id>flatten-clean</id>
|
|
|
|
<phase>clean</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.googlecode.maven-download-plugin</groupId>
|
|
|
|
<artifactId>download-maven-plugin</artifactId>
|
2022-01-21 19:05:56 +08:00
|
|
|
<version>1.6.7</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
2022-01-21 19:06:23 +08:00
|
|
|
<version>2.2.1</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2022-11-24 23:58:27 +08:00
|
|
|
<version>3.1.0</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2022-11-24 23:58:46 +08:00
|
|
|
<version>3.4.2</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-11-24 23:58:00 +08:00
|
|
|
<version>3.10.1</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2022-11-24 23:55:32 +08:00
|
|
|
<parameters>true</parameters>
|
2019-08-15 13:53:46 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2022-11-24 23:59:08 +08:00
|
|
|
<version>3.3.0</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2022-11-24 23:59:26 +08:00
|
|
|
<version>3.4.1</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2022-01-21 19:08:40 +08:00
|
|
|
<version>3.3.0</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2022-11-24 23:59:59 +08:00
|
|
|
<version>3.3.0</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2020-06-18 18:20:45 +08:00
|
|
|
<version>3.2.1</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.22.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2019-10-08 05:13:12 +08:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>full</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>full</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2019-08-15 13:53:46 +08:00
|
|
|
</project>
|