Skip to content

Commit c795662

Browse files
author
ondrej.basler
committed
Update Kotlin and Gradle
1 parent 4f3c94e commit c795662

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ gradle-app.setting
2727

2828
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
2929
gradle-wrapper.jar
30-
path/to/standalone/plugin/project/
30+
path/to/standalone/plugin/project/
31+
/local.properties

build.gradle.kts

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ plugins {
55
id("java")
66
id("java-gradle-plugin")
77
id("maven-publish")
8-
kotlin("jvm") version "1.8.0"
9-
id("com.gradle.plugin-publish") version "1.2.1"
8+
kotlin("jvm") version "2.1.0"
9+
id("com.gradle.plugin-publish") version "1.3.0"
1010
}
1111

1212
repositories {
1313
mavenCentral()
1414
}
1515

16+
@Suppress("UnstableApiUsage")
1617
gradlePlugin {
1718
website.set("https://github.com/ivancarras/graphfity")
1819
vcsUrl.set("https://github.com/ivancarras/graphfity.git")
@@ -42,11 +43,4 @@ publishing {
4243
url = uri("path/to/standalone/plugin/project")
4344
}
4445
}
45-
}
46-
47-
dependencies {
48-
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.0")
49-
implementation("org.codehaus.groovy:groovy-all:3.0.16")
50-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2")
51-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
52-
}
46+
}
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.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)