File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/main/java/eu/hexagonmc/spigot/gradle Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ buildscript {
158
158
}
159
159
...
160
160
dependencies {
161
- classpath group: 'eu.hexagonmc', name: 'spigot-gradle', version: '1.2 '
161
+ classpath group: 'eu.hexagonmc', name: 'spigot-gradle', version: '1.3 '
162
162
}
163
163
}
164
164
...
@@ -179,7 +179,7 @@ Apply the plugin in your `build.gradle`.
179
179
``` gradle
180
180
...
181
181
plugins {
182
- id "eu.hexagonmc.gradle.spigot" version "1.2 "
182
+ id "eu.hexagonmc.gradle.spigot" version "1.3 "
183
183
}
184
184
...
185
185
```
Original file line number Diff line number Diff line change 1
1
group = eu.hexagonmc
2
- version = 1.2 -SNAPSHOT
2
+ version = 1.3 -SNAPSHOT
3
3
description = Gradle plugin for Spigot and BungeeCord
4
4
5
5
github = HexagonMC/Spigot-Gradle
Original file line number Diff line number Diff line change @@ -80,12 +80,12 @@ private void addRepositoryAndDependency() {
80
80
repositories .add (repositories .jcenter ());
81
81
82
82
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 " );
84
84
85
85
boolean annotationProcessorConfigurationAvailable =
86
86
GradleVersion .version (_project .getGradle ().getGradleVersion ()).compareTo (GradleVersion .version ("4.6" )) >= 0 ;
87
87
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 " );
89
89
}
90
90
}
91
91
You can’t perform that action at this time.
0 commit comments