File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
src/funcTest/kotlin/com/github/jengelman/gradle/plugins/shadow Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -87,16 +87,15 @@ class PublishingTest : BasePluginTest() {
87
87
include 'a', 'b', 'c'
88
88
""" .trimIndent(),
89
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
- )
90
+ val subProjectCommon = """
91
+ plugins {
92
+ id 'java'
93
+ }
94
+ version = '1.0'
95
+ group = 'shadow'
96
+ """ .trimIndent()
97
+ path(" a/build.gradle" ).writeText(subProjectCommon)
98
+ path(" b/build.gradle" ).writeText(subProjectCommon)
100
99
101
100
path(" a/src/main/resources/aa.properties" ).writeText(" aa" )
102
101
path(" a/src/main/resources/aa2.properties" ).writeText(" aa2" )
You can’t perform that action at this time.
0 commit comments