83 lines
2.9 KiB
XML
83 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.faendir</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>0.9.23-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.2.1.RELEASE</version>
|
|
</parent>
|
|
<properties>
|
|
<revision>0.9.20-SNAPSHOT</revision>
|
|
</properties>
|
|
<modules>
|
|
<module>acrarium</module>
|
|
</modules>
|
|
<scm>
|
|
<connection>scm:git:git://github.com:F43nd1r/Acrarium.git</connection>
|
|
<developerConnection>scm:git:git@github.com:F43nd1r/Acrarium.git</developerConnection>
|
|
<url>https://github.com/F43nd1r/Acrarium</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>f43nd1r</id>
|
|
<name>Lukas Morawietz</name>
|
|
</developer>
|
|
</developers>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
<configuration>
|
|
<goals>install</goals>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<version>1.1.0</version>
|
|
<configuration>
|
|
</configuration>
|
|
<executions>
|
|
<!-- enable flattening -->
|
|
<execution>
|
|
<id>flatten</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>flatten</goal>
|
|
</goals>
|
|
</execution>
|
|
<!-- ensure proper cleanup -->
|
|
<execution>
|
|
<id>flatten.clean</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>production</id>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|