2019-02-07 16:35:20 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-08-18 14:07:02 +02: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-02-07 16:35:20 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
2019-08-15 07:53:46 +02:00
|
|
|
<artifactId>initializr-parent</artifactId>
|
2019-02-07 16:35:20 +01:00
|
|
|
<version>${revision}</version>
|
2019-08-15 07:53:46 +02:00
|
|
|
<relativePath>../initializr-parent</relativePath>
|
2019-02-07 16:35:20 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
<name>Spring Initializr :: Generator (Spring projects)</name>
|
|
|
|
|
2019-03-17 11:22:36 +01:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
|
|
</properties>
|
|
|
|
|
2019-02-07 16:35:20 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-metadata</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-02-18 11:33:33 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.samskivert</groupId>
|
|
|
|
<artifactId>jmustache</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-06-13 17:13:22 +01:00
|
|
|
<dependency>
|
2019-02-07 16:35:20 +01:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2019-08-20 15:24:13 +02:00
|
|
|
<artifactId>initializr-generator-test</artifactId>
|
2019-02-07 16:35:20 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-02 16:41:46 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-07 16:35:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<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>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-08-18 14:35:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-07 16:35:20 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|