Skip to content

Commit 47b91ba

Browse files
committed
Upgrade plugins and gradle
1 parent e18dbc5 commit 47b91ba

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import com.hierynomus.gradle.license.tasks.LicenseCheck
22
import com.hierynomus.gradle.license.tasks.LicenseFormat
33

44
plugins {
5-
id "org.jetbrains.intellij" version "1.9.0"
5+
id "org.jetbrains.intellij" version "1.13.3"
66
id "com.github.hierynomus.license" version "0.16.1"
7-
id "de.undercouch.download" version "4.1.2"
7+
id "de.undercouch.download" version "5.4.0"
88
}
99

1010

@@ -31,6 +31,7 @@ intellij {
3131
type = ideaType
3232
downloadSources = Boolean.valueOf(sources)
3333
sameSinceUntilBuild = Boolean.valueOf(isEAP)
34+
instrumentCode = false
3435
updateSinceUntilBuild = false
3536
pluginName = 'MapStruct-Intellij-Plugin'
3637
// The properties plugin is needed because Kotlin uses it
@@ -115,7 +116,7 @@ def mockJdkDest = "$buildDir/mock"
115116
def downloadMockJdk(mockJdkLocation, mockJdkDest, mockJdkVersion) {
116117
def location = mockJdkLocation + mockJdkVersion
117118
def destination = mockJdkDest + mockJdkVersion
118-
download {
119+
download.run {
119120
src([
120121
"$location/jre/lib/annotations.jar",
121122
"$location/jre/lib/rt.jar"
@@ -131,7 +132,7 @@ task downloadMockJdk7() {
131132
def mockJdk7Location = mockJdkLocation + jdkVersion
132133
def mockJdk7Dest = mockJdkDest + jdkVersion
133134
downloadMockJdk(mockJdkLocation, mockJdkDest, jdkVersion)
134-
download {
135+
download.run {
135136
src([
136137
"$mockJdk7Location/src.zip"
137138
])
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)