Skip to content

Commit

Permalink
Build against CH 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PseudoKnight committed Jul 18, 2023
1 parent 0f11f2d commit 4b7ee5f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Gives access to API available in Spigot but not Bukkit. As CommandHelper now depends on Spigot,
these functions and events are subject to be moved into CommandHelper at some point.

## Compatibility

* [**CHSpigot 2.0.6 for Spigot 1.16.5 - 1.20.1**](https://letsbuild.net/jenkins/job/CHSpigot/33/artifact/target/chspigot-2.0.6.jar) (CommandHelper 3.3.5 #332 or later) [Documentation](https://github.com/PseudoKnight/CHSpigot/blob/master/README.md)
* [**CHSpigot 2.0.4 for Spigot 1.13.2 - 1.16.5**](https://letsbuild.net/jenkins/job/CHSpigot/29/artifact/target/chspigot-2.0.4.jar) (CommandHelper 3.3.4 #3766 - 3.3.5 #255) [Documentation](https://github.com/PseudoKnight/CHSpigot/blob/v2.0.4/README.md)
* [**CHSpigot 1.6.0a for Spigot 1.12.2**](https://github.com/PseudoKnight/CHSpigot/releases/download/v1.6.0a/chspigot-1.6.0.jar) (CommandHelper 3.3.2) [Documentation](https://github.com/PseudoKnight/CHSpigot/blob/v1.6.0a/README.md)

## Function Documentation

### Player API
Expand Down
21 changes: 9 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.pseudoknight</groupId>
<artifactId>chspigot</artifactId>
<version>2.0.5</version>
<version>2.0.6</version>
<name>CHSpigot</name>
<description>Gives access to methods available in Spigot but not Bukkit</description>

Expand All @@ -16,19 +16,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.10.1</version>
<configuration>
<showDeprecation>true</showDeprecation>
<source>1.8</source>
<target>1.8</target>
<release>16</release>
<compilerArgument>-XDignore.symbol.file</compilerArgument>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>

<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
Expand All @@ -40,15 +38,14 @@

</archive>
</configuration>
<version>2.4</version>

<version>3.2.2</version>
</plugin>

<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>2.2.4</version>

<version>5.0-jdk8-rc3</version>
<executions>
<execution>
<id>process</id>
Expand All @@ -72,8 +69,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>

<version>3.0.0</version>
<executions>
<execution>
<id>cache-annotations</id>
Expand Down Expand Up @@ -107,7 +103,8 @@
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>commandhelper</artifactId>
<version>3.3.4-SNAPSHOT</version>
<version>3.3.5-SNAPSHOT</version>
<classifier>full</classifier>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/pseudoknight/chspigot/Extension.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@MSExtension("CHSpigot")
public class Extension extends AbstractExtension {

private final SimpleVersion VERSION = new SimpleVersion(2,0,5);
private final SimpleVersion VERSION = new SimpleVersion(2,0,6);

@Override
public Version getVersion() {
Expand Down

0 comments on commit 4b7ee5f

Please sign in to comment.