2016-04-05 23:50:45 +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">
|
2016-04-05 23:50:45 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2019-08-15 13:53:46 +08:00
|
|
|
<artifactId>initializr-parent</artifactId>
|
2019-01-31 00:13:17 +08:00
|
|
|
<version>${revision}</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
<relativePath>../initializr-parent</relativePath>
|
2016-04-05 23:50:45 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>initializr-web</artifactId>
|
|
|
|
<name>Spring Initializr :: Web</name>
|
|
|
|
|
2018-04-14 03:14:19 +08:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
|
|
</properties>
|
2019-10-06 01:32:42 +08:00
|
|
|
<scm>
|
|
|
|
<url>${git.url}</url>
|
|
|
|
<connection>${git.connection}</connection>
|
|
|
|
<developerConnection>${git.developerConnection}</developerConnection>
|
|
|
|
</scm>
|
2018-04-14 03:14:19 +08:00
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 23:50:45 +08:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
</dependency>
|
2019-02-07 19:28:12 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-metadata</artifactId>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2019-10-16 17:37:21 +08:00
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
2016-04-05 23:50:45 +08:00
|
|
|
</dependency>
|
2016-06-09 19:17:31 +08:00
|
|
|
<dependency>
|
2017-03-29 18:55:29 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2019-10-16 17:37:21 +08:00
|
|
|
<artifactId>spring-boot-starter-mustache</artifactId>
|
2016-06-09 19:17:31 +08:00
|
|
|
</dependency>
|
2017-03-29 18:55:29 +08:00
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.hateoas</groupId>
|
|
|
|
<artifactId>spring-hateoas</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-07-11 18:43:52 +08:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2016-04-05 23:50:45 +08:00
|
|
|
</dependency>
|
2019-07-31 22:15:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
</dependency>
|
2018-04-12 13:04:20 +08:00
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
2017-03-29 18:55:29 +08:00
|
|
|
<groupId>javax.cache</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
<optional>true</optional>
|
2016-04-05 23:50:45 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-10-16 17:31:07 +08:00
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-16 17:37:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2019-08-20 21:24:13 +08:00
|
|
|
<artifactId>initializr-generator-test</artifactId>
|
2018-11-21 22:20:08 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-16 17:42:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-wiremock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-09-26 23:13:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.restdocs</groupId>
|
|
|
|
<artifactId>spring-restdocs-mockmvc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-12-08 22:32:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-12-29 20:29:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.vaadin.external.google</groupId>
|
|
|
|
<artifactId>android-json</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
2018-05-18 22:44:28 +08:00
|
|
|
<profile>
|
2018-11-07 16:57:31 +08:00
|
|
|
<id>full</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>full</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2018-05-18 22:44:28 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>build-assets</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<configuration>
|
|
|
|
<attach>true</attach>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${basedir}/src/assembly/snippets.xml</descriptor>
|
|
|
|
<descriptor>${basedir}/src/assembly/stub.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2016-04-05 23:50:45 +08:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|