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