File tree Expand file tree Collapse file tree 12 files changed +57
-32
lines changed Expand file tree Collapse file tree 12 files changed +57
-32
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,13 @@ intellijPlatform {
53
53
tasks.prepareSandbox {
54
54
val pluginName = intellijPlatform.projectName
55
55
56
- intoChild(pluginName.map { " $it /dotnet" })
57
- .from(resharperDlls)
56
+ from(resharperDlls) {
57
+ into(pluginName.map { " $it /dotnet" })
58
+ }
58
59
59
- intoChild(pluginName.map { " $it /gateway-resources" })
60
- .from(gatewayResources)
60
+ from(gatewayResources) {
61
+ into(pluginName.map { " $it /gateway-resources" })
62
+ }
61
63
}
62
64
63
65
// We have no source in this project, so skip test task
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ detekt = "1.23.8"
10
10
diff-util = " 4.12"
11
11
intellijExt = " 1.1.8"
12
12
# match with <root>/settings.gradle.kts
13
- intellijGradle = " 2.6.0 "
13
+ intellijGradle = " 2.7.1 "
14
14
intellijRemoteRobot = " 0.11.22"
15
15
jackson = " 2.17.2"
16
16
jacoco = " 0.8.12"
Original file line number Diff line number Diff line change @@ -133,8 +133,10 @@ val prepareBundledFlare by tasks.registering(Copy::class) {
133
133
}
134
134
135
135
tasks.withType<PrepareSandboxTask >().configureEach {
136
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
137
- .from(file(" contrib/QCT-Maven-6-16.jar" ))
138
- intoChild(intellijPlatform.projectName.map { " $it /flare" })
139
- .from(prepareBundledFlare)
136
+ from(file(" contrib/QCT-Maven-6-16.jar" )) {
137
+ into(intellijPlatform.projectName.map { " $it /lib" })
138
+ }
139
+ from(prepareBundledFlare) {
140
+ into(intellijPlatform.projectName.map { " $it /flare" })
141
+ }
140
142
}
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ tasks.prepareTestSandbox {
32
32
val pluginXmlJar = project(" :plugin-amazonq" ).tasks.jar
33
33
34
34
dependsOn(pluginXmlJar)
35
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
36
- .from(pluginXmlJar)
35
+ from(pluginXmlJar) {
36
+ into(intellijPlatform.projectName.map { " $it /lib" })
37
+ }
37
38
}
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ tasks.prepareTestSandbox {
31
31
val pluginXmlJar = project(" :plugin-amazonq" ).tasks.jar
32
32
33
33
dependsOn(pluginXmlJar)
34
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
35
- .from(pluginXmlJar)
34
+ from(pluginXmlJar) {
35
+ into(intellijPlatform.projectName.map { " $it /lib" })
36
+ }
36
37
}
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ tasks.prepareTestSandbox {
31
31
val pluginXmlJar = project(" :plugin-amazonq" ).tasks.jar
32
32
33
33
dependsOn(pluginXmlJar)
34
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
35
- .from(pluginXmlJar)
34
+ from(pluginXmlJar) {
35
+ into(intellijPlatform.projectName.map { " $it /lib" })
36
+ }
36
37
}
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ tasks.prepareTestSandbox {
30
30
val pluginXmlJar = project(" :plugin-amazonq" ).tasks.jar
31
31
32
32
dependsOn(pluginXmlJar)
33
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
34
- .from(pluginXmlJar)
33
+ from(pluginXmlJar) {
34
+ into(intellijPlatform.projectName.map { " $it /lib" })
35
+ }
35
36
}
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ tasks.prepareTestSandbox {
95
95
val pluginXmlJar = project(" :plugin-core" ).tasks.jar
96
96
97
97
dependsOn(pluginXmlJar)
98
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
99
- .from(pluginXmlJar)
98
+ from(pluginXmlJar) {
99
+ into(intellijPlatform.projectName.map { " $it /lib" })
100
+ }
100
101
}
Original file line number Diff line number Diff line change @@ -138,8 +138,9 @@ tasks.jar {
138
138
}
139
139
140
140
tasks.withType<PrepareSandboxTask >().configureEach {
141
- intoChild(intellijPlatform.projectName.map { " $it /gateway-resources" })
142
- .from(gatewayResourcesDir)
141
+ from(gatewayResourcesDir) {
142
+ into(intellijPlatform.projectName.map { " $it /gateway-resources" })
143
+ }
143
144
}
144
145
145
146
listOf (
@@ -150,8 +151,9 @@ listOf(
150
151
runtimeClasspath.setFrom(gatewayOnlyRuntimeClasspath)
151
152
152
153
dependsOn(gatewayOnlyResourcesJar)
153
- intoChild(intellijPlatform.projectName.map { " $it /lib" })
154
- .from(gatewayOnlyResourcesJar)
154
+ from(gatewayOnlyResourcesJar) {
155
+ into(intellijPlatform.projectName.map { " $it /lib" })
156
+ }
155
157
}
156
158
}
157
159
Original file line number Diff line number Diff line change @@ -338,8 +338,9 @@ tasks.withType<PrepareSandboxTask>().configureEach {
338
338
339
339
dependsOn(resharperDllsDir)
340
340
341
- intoChild(intellijPlatform.projectName.map { " $it /dotnet" })
342
- .from(resharperDllsDir)
341
+ from(resharperDllsDir) {
342
+ into(intellijPlatform.projectName.map { " $it /dotnet" })
343
+ }
343
344
}
344
345
345
346
tasks.compileKotlin {
You can’t perform that action at this time.
0 commit comments