add maven central required stuff to pom

This commit is contained in:
f43nd1r 2019-12-06 05:24:28 +01:00
parent 7c3d14ca9f
commit 499878544e

146
pom.xml
View file

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