We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2998d4d commit 84b22a0Copy full SHA for 84b22a0
src/funcTest/kotlin/com/github/jengelman/gradle/plugins/shadow/PublishingTest.kt
@@ -87,16 +87,15 @@ class PublishingTest : BasePluginTest() {
87
include 'a', 'b', 'c'
88
""".trimIndent(),
89
)
90
- projectScriptPath.writeText(
91
- """
92
- subprojects {
93
- apply plugin: 'java'
94
- apply plugin: 'maven-publish'
95
- version = '1.0'
96
- group = 'shadow'
97
- }
98
- """.trimIndent(),
99
- )
+ val subProjectCommon = """
+ plugins {
+ id 'java'
+ }
+ version = '1.0'
+ group = 'shadow'
+ """.trimIndent()
+ path("a/build.gradle").writeText(subProjectCommon)
+ path("b/build.gradle").writeText(subProjectCommon)
100
101
path("a/src/main/resources/aa.properties").writeText("aa")
102
path("a/src/main/resources/aa2.properties").writeText("aa2")
0 commit comments