Skip to content

Commit bb639c4

Browse files
author
BuildTools
committed
Use latest version of spigot annotations
1 parent 114e0df commit bb639c4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ buildscript {
158158
}
159159
...
160160
dependencies {
161-
classpath group: 'eu.hexagonmc', name: 'spigot-gradle', version: '1.2'
161+
classpath group: 'eu.hexagonmc', name: 'spigot-gradle', version: '1.3'
162162
}
163163
}
164164
...
@@ -179,7 +179,7 @@ Apply the plugin in your `build.gradle`.
179179
```gradle
180180
...
181181
plugins {
182-
id "eu.hexagonmc.gradle.spigot" version "1.2"
182+
id "eu.hexagonmc.gradle.spigot" version "1.3"
183183
}
184184
...
185185
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = eu.hexagonmc
2-
version = 1.2-SNAPSHOT
2+
version = 1.3-SNAPSHOT
33
description = Gradle plugin for Spigot and BungeeCord
44

55
github = HexagonMC/Spigot-Gradle

src/main/java/eu/hexagonmc/spigot/gradle/SpigotGradlePlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ private void addRepositoryAndDependency() {
8080
repositories.add(repositories.jcenter());
8181

8282
DependencyHandler dependencies = _project.getDependencies();
83-
dependencies.add(JavaPlugin.COMPILE_ONLY_CONFIGURATION_NAME, "eu.hexagonmc:spigot-annotations:1.1");
83+
dependencies.add(JavaPlugin.COMPILE_ONLY_CONFIGURATION_NAME, "eu.hexagonmc:spigot-annotations:1.2");
8484

8585
boolean annotationProcessorConfigurationAvailable =
8686
GradleVersion.version(_project.getGradle().getGradleVersion()).compareTo(GradleVersion.version("4.6")) >= 0;
8787
if (annotationProcessorConfigurationAvailable) {
88-
dependencies.add(JavaPlugin.ANNOTATION_PROCESSOR_CONFIGURATION_NAME, "eu.hexagonmc:spigot-annotations:1.1");
88+
dependencies.add(JavaPlugin.ANNOTATION_PROCESSOR_CONFIGURATION_NAME, "eu.hexagonmc:spigot-annotations:1.2");
8989
}
9090
}
9191

0 commit comments

Comments
 (0)