File tree Expand file tree Collapse file tree 12 files changed +44
-31
lines changed Expand file tree Collapse file tree 12 files changed +44
-31
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ 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
- intoChild(pluginName.map { " $it /gateway-resources" })
60
59
.from(gatewayResources)
60
+ .into(pluginName.map { " $it /gateway-resources" })
61
61
}
62
62
63
63
// 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-SNAPSHOT "
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,8 @@ 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 (intellijPlatform.projectName.map { " $it /lib" })
137
+ .into (file(" contrib/QCT-Maven-6-16.jar" ))
138
+ from (intellijPlatform.projectName.map { " $it /flare" })
139
+ .into (prepareBundledFlare)
140
140
}
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ 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 (intellijPlatform.projectName.map { " $it /lib" })
36
+ .into (pluginXmlJar)
37
37
}
Original file line number Diff line number Diff line change @@ -31,6 +31,6 @@ 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 (intellijPlatform.projectName.map { " $it /lib" })
35
+ .into (pluginXmlJar)
36
36
}
Original file line number Diff line number Diff line change @@ -31,6 +31,6 @@ 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 (intellijPlatform.projectName.map { " $it /lib" })
35
+ .into (pluginXmlJar)
36
36
}
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ 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 (intellijPlatform.projectName.map { " $it /lib" })
34
+ .into (pluginXmlJar)
35
35
}
Original file line number Diff line number Diff line change @@ -95,6 +95,6 @@ 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 (intellijPlatform.projectName.map { " $it /lib" })
99
+ .into (pluginXmlJar)
100
100
}
Original file line number Diff line number Diff line change @@ -138,8 +138,8 @@ 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 (intellijPlatform.projectName.map { " $it /gateway-resources" })
142
+ .into (gatewayResourcesDir)
143
143
}
144
144
145
145
listOf (
@@ -150,8 +150,8 @@ listOf(
150
150
runtimeClasspath.setFrom(gatewayOnlyRuntimeClasspath)
151
151
152
152
dependsOn(gatewayOnlyResourcesJar)
153
- intoChild (intellijPlatform.projectName.map { " $it /lib" })
154
- .from (gatewayOnlyResourcesJar)
153
+ from (intellijPlatform.projectName.map { " $it /lib" })
154
+ .into (gatewayOnlyResourcesJar)
155
155
}
156
156
}
157
157
Original file line number Diff line number Diff line change @@ -338,8 +338,8 @@ tasks.withType<PrepareSandboxTask>().configureEach {
338
338
339
339
dependsOn(resharperDllsDir)
340
340
341
- intoChild (intellijPlatform.projectName.map { " $it /dotnet" })
342
- .from (resharperDllsDir)
341
+ from (intellijPlatform.projectName.map { " $it /dotnet" })
342
+ .into (resharperDllsDir)
343
343
}
344
344
345
345
tasks.compileKotlin {
You can’t perform that action at this time.
0 commit comments