Bump version with flatten plugin

This commit is contained in:
PikaMug 2022-05-31 05:07:30 -04:00
parent 2d1387cda1
commit 7cbf317b42
8 changed files with 45 additions and 12 deletions

5
.gitignore vendored
View File

@ -19,10 +19,11 @@ nbdist/
# Maven files
*/target
*dependency-reduced-pom.xml
*.flattened-pom.xml
# Java files
*.class
*.log
*.ctxt
hs_err_pid*
/target/
hs_err_pid*
/target/

View File

@ -6,7 +6,7 @@
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
<version>4.4.2</version>
<version>${revision}</version>
</parent>
<artifactId>quests-api</artifactId>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
<version>4.4.2</version>
<version>${revision}</version>
</parent>
<artifactId>quests-core</artifactId>

3
dist/pom.xml vendored
View File

@ -6,10 +6,9 @@
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
<version>4.4.2</version>
<version>${revision}</version>
</parent>
<artifactId>quests-dist</artifactId>
<packaging>pom</packaging>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>

37
pom.xml
View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.blackvein.quests</groupId>
<version>4.4.2</version>
<version>${revision}</version>
<artifactId>quests-parent</artifactId>
<packaging>pom</packaging>
@ -21,7 +21,9 @@
</modules>
<properties>
<revision>4.4.2</revision>
<revision>4.4.3</revision>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
@ -33,4 +35,35 @@
<url>https://repo.codemc.io/repository/nms/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
</project>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
<version>4.4.2</version>
<version>${revision}</version>
</parent>
<artifactId>quests-v1_8_R1</artifactId>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
<version>4.4.2</version>
<version>${revision}</version>
</parent>
<artifactId>quests-v1_8_R2</artifactId>

View File

@ -1,12 +1,12 @@
<?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">
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>
<parent>
<groupId>me.blackvein.quests</groupId>
<artifactId>quests-parent</artifactId>
<version>4.4.2</version>
<version>${revision}</version>
</parent>
<artifactId>quests-v1_8_R3</artifactId>