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-generator</artifactId>
|
|
|
|
<name>Spring Initializr :: Generator</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>
|
2019-02-08 13:01:32 +01:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2016-04-05 17:50:45 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2017-02-09 12:13:43 +00:00
|
|
|
<groupId>com.samskivert</groupId>
|
|
|
|
<artifactId>jmustache</artifactId>
|
2017-02-10 14:49:34 +01:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
2019-01-23 17:45:00 -08:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
2019-01-31 11:06:54 +01:00
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2019-01-23 17:45:00 -08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<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>
|
|
|
|
|
2017-01-27 12:52:11 +00:00
|
|
|
</project>
|