Skip to content

Commit 70fda4a

Browse files
committed
Bump Gradle version, proper plugin configuration
Allows you to actually use the plugins block.
1 parent f9729ed commit 70fda4a

File tree

6 files changed

+44
-27
lines changed

6 files changed

+44
-27
lines changed

dev/build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
includeOnly(project(":dev11")) {
4040
transitive = false
4141
}
42-
// For testes only
42+
// For tests only
4343
testImplementation(gradleTestKit())
4444
testImplementation(gradleFixtures()) { transitive = false }
4545
testRuntimeOnly(project(":common"))
@@ -51,7 +51,13 @@ dependencies {
5151
gradlePlugin {
5252
compatibility {
5353
minimumGradleVersion = '8.2'
54-
gradleApiVersion = '8.6'
54+
gradleApiVersion = '8.9'
55+
}
56+
plugins {
57+
create('simplePlugin') {
58+
id = 'com.fox2code.foxloader.dev'
59+
implementationClass = 'com.fox2code.foxloader.dev.GradlePlugin'
60+
}
5561
}
5662
}
5763

dev/src/main/resources/META-INF/gradle-plugins/foxloader.dev.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-16.9 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

gradlew

Lines changed: 22 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)