Skip to content

Commit

Permalink
chore: Upgrade project Gradle wrapper to 8.0.2 (#1317)
Browse files Browse the repository at this point in the history
* upgrade wrapper to 8.0.2

* update tapi version
  • Loading branch information
CsCherrYY authored Mar 7, 2023
1 parent 4fdf19d commit 1c15819
Show file tree
Hide file tree
Showing 12 changed files with 165 additions and 111 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
project.ext.set('grpcVersion', '1.45.0')
project.ext.set('protobufVersion', '3.12.0')
project.ext.set('protocVersion', project.protobufVersion)
project.ext.set('toolingAPIVersion', '7.3')
project.ext.set('toolingAPIVersion', '8.0.2')

allprojects {
group = 'vscode-gradle'
Expand Down
2 changes: 1 addition & 1 deletion cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"Maven": {
"GroupId": "org.gradle",
"ArtifactId": "gradle-tooling-api",
"Version": "7.3"
"Version": "8.0.2"
}
},
"DevelopmentDependency": false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
1 change: 1 addition & 0 deletions gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ spotless {
}

tasks.build.dependsOn tasks.copyJar
tasks.copyJar.dependsOn tasks.jar
compileJava.dependsOn 'spotlessCheck'
2 changes: 2 additions & 0 deletions gradle-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ spotless {
task serverStartScripts(type: CreateStartScripts) {
dependsOn jar
dependsOn 'copyRuntimeLibs'
dependsOn(':gradle-language-server:copyJar')
outputDir = file(libsDir)
mainClass = 'com.github.badsyntax.gradle.GradleServer'
applicationName = project.name
Expand All @@ -126,6 +127,7 @@ task copyRuntimeLibs(type: Copy) {
}

project.tasks.named("processResources") {
dependsOn(':gradle-plugin:copyJar')
duplicatesStrategy = 'include'
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 1c15819

Please sign in to comment.