File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ publishing {
99 pom. withXml {
1010 def dependencyManagementNode = asNode(). appendNode(' dependencyManagement' ). appendNode(' dependencies' )
1111
12- rootProject. subprojects. findAll { it != project }. each { subProject ->
12+ rootProject. subprojects. findAll { it != project && ! it . path . startsWith( " :docs: " ) && it != project( " :docs " ) }. each { subProject ->
1313 dependencyManagementNode. appendNode(' dependency' ). with {
1414 appendNode(' groupId' , subProject. group)
1515 appendNode(' artifactId' ,subProject. name)
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ subprojects {
4242 }
4343
4444 // specific modules should be excluded from publication
45- if ( ! [" test-support" , " jdbc-test" , " docs-examples " ]. contains(it. name) ) {
45+ if ( ! [" test-support" , " jdbc-test" ]. contains(it. name) && ! it . path . startsWith( " :docs: " ) && it != project( " :docs " ) ) {
4646 apply from : " $rootDir /gradle/publishing.gradle"
4747 apply from : " $rootDir /gradle/bintray.gradle"
4848
You can’t perform that action at this time.
0 commit comments