File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ plugins {
99}
1010
1111subprojects {
12+ if (name == ' xpath-to-xml-bom' ) return // skip empty projects
13+
1214 apply plugin : ' java-library'
1315 apply plugin : ' org.beryx.jar'
1416 apply from : rootProject. file(' gradle/check-checkstyle.gradle' )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'signing'
44publishing {
55 publications {
66 mavenJava(MavenPublication ) {
7- from components. java
7+ from components. find { it . name == ' java' || it . name == ' javaPlatform ' }
88 versionMapping {
99 usage(' java-api' ) {
1010 fromResolutionResult()
Original file line number Diff line number Diff line change 11rootProject. name = ' xpath-to-xml'
2+
23include ' xpath-to-json-gson'
34include ' xpath-to-json-jackson'
45include ' xpath-to-json-jakarta'
6+ include ' xpath-to-xml-bom'
57include ' xpath-to-xml-core'
68include ' xpath-to-xml-dom'
79include ' xpath-to-xml-dom4j'
Original file line number Diff line number Diff line change 1+ apply plugin : ' java-platform'
2+ apply from : rootProject. file(' gradle/publish-maven.gradle' )
3+
4+ dependencies {
5+ constraints {
6+ api project(' :xpath-to-json-gson' )
7+ api project(' :xpath-to-json-jackson' )
8+ api project(' :xpath-to-json-jakarta' )
9+ api project(' :xpath-to-xml-core' )
10+ api project(' :xpath-to-xml-dom' )
11+ api project(' :xpath-to-xml-dom4j' )
12+ api project(' :xpath-to-xml-jdom' )
13+ api project(' :xpath-to-xml-scala_2.12' )
14+ api project(' :xpath-to-xml-scala_2.13' )
15+ api project(' :xpath-to-xml-scala_3' )
16+ api project(' :xpath-to-xml-xom' )
17+ }
18+ }
You can’t perform that action at this time.
0 commit comments