File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
src/functionalTest/kotlin/com/github/jengelman/gradle/plugins/shadow Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -239,16 +239,16 @@ class PublishingTest : BasePluginTest() {
239
239
include 'a', 'b', 'c'
240
240
""" .trimIndent(),
241
241
)
242
- projectScriptPath.writeText(
243
- """
244
- subprojects {
245
- apply plugin: 'java'
246
- apply plugin: 'maven-publish'
247
- version = '1.0'
248
- group = 'my'
249
- }
250
- """ .trimIndent(),
251
- )
242
+ projectScriptPath.writeText(" " )
243
+ val subProjectCommon = """
244
+ plugins {
245
+ id 'java'
246
+ }
247
+ version = '1.0'
248
+ group = 'my'
249
+ """ .trimIndent()
250
+ path( " a/build.gradle " ).writeText(subProjectCommon)
251
+ path( " b/build.gradle " ).writeText(subProjectCommon )
252
252
253
253
path(" a/src/main/resources/aa.properties" ).writeText(" aa" )
254
254
path(" a/src/main/resources/aa2.properties" ).writeText(" aa2" )
You can’t perform that action at this time.
0 commit comments