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 @@ -284,16 +284,16 @@ class PublishingTest : BasePluginTest() {
284
284
include 'a', 'b', 'c'
285
285
""" .trimIndent(),
286
286
)
287
- projectScriptPath.writeText(
288
- """
289
- subprojects {
290
- apply plugin: 'java'
291
- apply plugin: 'maven-publish'
292
- version = '1.0'
293
- group = 'my'
294
- }
295
- """ .trimIndent(),
296
- )
287
+ projectScriptPath.writeText(" " )
288
+ val subProjectCommon = """
289
+ plugins {
290
+ id 'java'
291
+ }
292
+ version = '1.0'
293
+ group = 'my'
294
+ """ .trimIndent()
295
+ path( " a/build.gradle " ).writeText(subProjectCommon)
296
+ path( " b/build.gradle " ).writeText(subProjectCommon )
297
297
298
298
path(" a/src/main/resources/aa.properties" ).writeText(" aa" )
299
299
path(" a/src/main/resources/aa2.properties" ).writeText(" aa2" )
You can’t perform that action at this time.
0 commit comments