2016-04-05 17:50:45 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-07-10 12:29:54 +00: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 17:50:45 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr</artifactId>
|
2019-01-30 08:13:17 -08:00
|
|
|
<version>${revision}</version>
|
2016-04-05 17:50:45 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>initializr-web</artifactId>
|
|
|
|
<name>Spring Initializr :: Web</name>
|
|
|
|
|
2018-04-13 12:14:19 -07:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
|
|
</properties>
|
|
|
|
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
</dependency>
|
2019-02-07 12:28:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-metadata</artifactId>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2017-03-29 12:55:29 +02:00
|
|
|
<artifactId>spring-boot-starter-mustache</artifactId>
|
2016-04-05 17:50:45 +02:00
|
|
|
</dependency>
|
2016-06-09 13:17:31 +02:00
|
|
|
<dependency>
|
2017-03-29 12:55:29 +02:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
2016-06-09 13:17:31 +02:00
|
|
|
</dependency>
|
2017-03-29 12:55:29 +02:00
|
|
|
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.hateoas</groupId>
|
|
|
|
<artifactId>spring-hateoas</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-02-20 11:20:09 +00:00
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
2016-04-05 17:50:45 +02:00
|
|
|
</dependency>
|
2018-04-11 22:04:20 -07:00
|
|
|
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
2017-03-29 12:55:29 +02:00
|
|
|
<groupId>javax.cache</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
<optional>true</optional>
|
2016-04-05 17:50:45 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-01-23 18:34:09 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
2019-01-31 11:06:54 +01:00
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2019-01-23 18:34:09 -08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-03-17 11:26:29 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2019-01-23 18:34:09 -08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-04-05 17:50:45 +02:00
|
|
|
</dependency>
|
2016-09-26 16:13:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-wiremock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-07 12:28:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
2018-11-21 15:20:08 +01:00
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-09-26 16:13:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.restdocs</groupId>
|
|
|
|
<artifactId>spring-restdocs-mockmvc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-12-29 13:29:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.vaadin.external.google</groupId>
|
|
|
|
<artifactId>android-json</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02: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 16:44:28 +02:00
|
|
|
<profile>
|
2018-11-07 09:57:31 +01:00
|
|
|
<id>full</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>full</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2018-05-18 16:44:28 +02: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 17:50:45 +02:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|