mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-24 10:09:49 +01:00
Bump version with flatten plugin
This commit is contained in:
parent
2d1387cda1
commit
7cbf317b42
5
.gitignore
vendored
5
.gitignore
vendored
@ -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/
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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
3
dist/pom.xml
vendored
@ -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
37
pom.xml
@ -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>
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user