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>
|
|
|
|
<parent>
|
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-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>
|
|
|
|
|
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 23:35:20 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-generator-spring</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>
|
2017-03-29 18:55:29 +08:00
|
|
|
<artifactId>spring-boot-starter-mustache</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>
|
|
|
|
<artifactId>spring-boot-starter-cache</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>
|
2017-02-20 19:20:09 +08:00
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
2016-04-05 23:50:45 +08:00
|
|
|
</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-01-24 10:34:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
2019-01-31 18:06:54 +08:00
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2019-01-24 10:34:09 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2019-01-24 10:34:09 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-04-05 23:50:45 +08:00
|
|
|
</dependency>
|
2016-09-26 23:13:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-wiremock</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>
|
2016-04-05 23:50:45 +08:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-07 19:28:12 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
2018-11-21 22:20:08 +08:00
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<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>
|
2016-09-26 23:13:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.restdocs</groupId>
|
|
|
|
<artifactId>spring-restdocs-mockmvc</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-firefox-driver</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-support</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
|
|
|
<profile>
|
|
|
|
<id>smokeTests</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-test</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2016-09-26 23:54:25 +08:00
|
|
|
<systemProperties>
|
|
|
|
<smoke.test>true</smoke.test>
|
|
|
|
</systemProperties>
|
2016-04-05 23:50:45 +08:00
|
|
|
<includes>
|
|
|
|
<include>**/*SmokeTests.java</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/Abstract*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|