Release version 4.2.0
Dieser Commit ist enthalten in:
Ursprung
3b7b692e80
Commit
b6a054b766
@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>ProtocolLib-API</artifactId>
|
<artifactId>ProtocolLib-API</artifactId>
|
||||||
<name>ProtocolLib-API</name>
|
<name>ProtocolLib-API</name>
|
||||||
<version>4.2.0-SNAPSHOT</version>
|
<version>4.2.0</version>
|
||||||
|
|
||||||
<description>Provides read/write access to the Minecraft protocol.</description>
|
<description>Provides read/write access to the Minecraft protocol.</description>
|
||||||
<url>http://www.spigotmc.org/resources/protocollib.1997/</url>
|
<url>http://www.spigotmc.org/resources/protocollib.1997/</url>
|
||||||
@ -19,6 +19,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.build.number></project.build.number>
|
<project.build.number></project.build.number>
|
||||||
|
<project.fullVersion>${project.version}</project.fullVersion>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@ -54,7 +55,7 @@
|
|||||||
<manifestEntries>
|
<manifestEntries>
|
||||||
<Main-Class>com.comphenix.protocol.Application</Main-Class>
|
<Main-Class>com.comphenix.protocol.Application</Main-Class>
|
||||||
<Implementation-Title>ProtocolLib</Implementation-Title>
|
<Implementation-Title>ProtocolLib</Implementation-Title>
|
||||||
<Implementation-Version>${project.version}${project.build.number}</Implementation-Version>
|
<Implementation-Version>${project.fullVersion}</Implementation-Version>
|
||||||
<Implementation-Vendor>dmulloy2</Implementation-Vendor>
|
<Implementation-Vendor>dmulloy2</Implementation-Vendor>
|
||||||
</manifestEntries>
|
</manifestEntries>
|
||||||
</archive>
|
</archive>
|
||||||
@ -88,6 +89,7 @@
|
|||||||
</activation>
|
</activation>
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.number>-b${env.BUILD_NUMBER}</project.build.number>
|
<project.build.number>-b${env.BUILD_NUMBER}</project.build.number>
|
||||||
|
<project.fullVersion>${project.version}${project.build.number}</project.fullVersion>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
@ -99,6 +101,9 @@
|
|||||||
<value>true</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</activation>
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<project.fullVersion>${project.version}</project.fullVersion>
|
||||||
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>ProtocolLib</artifactId>
|
<artifactId>ProtocolLib</artifactId>
|
||||||
<name>ProtocolLib</name>
|
<name>ProtocolLib</name>
|
||||||
<version>4.2.0-SNAPSHOT</version>
|
<version>4.2.0</version>
|
||||||
|
|
||||||
<description>Provides read/write access to the Minecraft protocol.</description>
|
<description>Provides read/write access to the Minecraft protocol.</description>
|
||||||
<url>http://www.spigotmc.org/resources/protocollib.1997/</url>
|
<url>http://www.spigotmc.org/resources/protocollib.1997/</url>
|
||||||
@ -19,8 +19,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.build.number></project.build.number>
|
<project.build.number></project.build.number>
|
||||||
<!-- Remove build number for release -->
|
<project.fullVersion>${project.version}</project.fullVersion>
|
||||||
<project.fullVersion>${project.version}${project.build.number}</project.fullVersion>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@ -123,6 +122,7 @@
|
|||||||
</activation>
|
</activation>
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.number>-b${env.BUILD_NUMBER}</project.build.number>
|
<project.build.number>-b${env.BUILD_NUMBER}</project.build.number>
|
||||||
|
<project.fullVersion>${project.version}${project.build.number}</project.fullVersion>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
@ -134,6 +134,9 @@
|
|||||||
<value>true</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</activation>
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<project.fullVersion>${project.version}</project.fullVersion>
|
||||||
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: ProtocolLib
|
name: ProtocolLib
|
||||||
version: ${project.version}${project.build.number}
|
version: ${project.fullVersion}
|
||||||
description: Provides read/write access to the Minecraft protocol.
|
description: Provides read/write access to the Minecraft protocol.
|
||||||
authors: [dmulloy2, comphenix]
|
authors: [dmulloy2, comphenix]
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren