File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/me/TechsCode/GradeBasePlugin Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def artifactId = 'GradleBasePlugin'
12
12
// /---> Major Version - Increment this when you make a breaking change
13
13
// | /---> Minor Version - Increment this when you add a new feature
14
14
// | | /---> Patch Version - Increment this when you make a bug fix
15
- def versionNum = ' 4.4.0 '
15
+ def versionNum = ' 4.5.0-BETA '
16
16
17
17
group = groupId
18
18
version = versionNum
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class GradleBasePlugin implements Plugin<Project> {
25
25
};
26
26
27
27
private static final String [] dependencies = new String [] {
28
- "compileOnly#org.spigotmc:spigot-api:1.21-R0.1-SNAPSHOT" ,
28
+ "compileOnly#org.spigotmc:spigot-api:1.21.1 -R0.1-SNAPSHOT" ,
29
29
"compileOnly#net.md-5:bungeecord-api:1.21-R0.1-SNAPSHOT"
30
30
};
31
31
@@ -81,8 +81,8 @@ public void apply(Project project) {
81
81
private void afterProjectEvaluation (Project project ) {
82
82
// Setting properties
83
83
project .setProperty ("version" , meta .pluginVersion );
84
- project .setProperty ("sourceCompatibility" , "1.8 " );
85
- project .setProperty ("targetCompatibility" , "1.8 " );
84
+ project .setProperty ("sourceCompatibility" , "17 " );
85
+ project .setProperty ("targetCompatibility" , "17 " );
86
86
87
87
if (!meta .configValid ()) {
88
88
Logger .error (
You can’t perform that action at this time.
0 commit comments