File tree Expand file tree Collapse file tree 5 files changed +39
-15
lines changed
xpath-to-xml-core/src/main/module Expand file tree Collapse file tree 5 files changed +39
-15
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ plugins {
10
10
11
11
subprojects {
12
12
apply plugin : ' java-library'
13
+ apply plugin : ' org.beryx.jar'
13
14
apply from : rootProject. file(' gradle/check-checkstyle.gradle' )
14
15
apply from : rootProject. file(' gradle/check-codecoverage.gradle' )
15
16
apply from : rootProject. file(' gradle/check-errorprone.gradle' )
@@ -46,15 +47,11 @@ subprojects {
46
47
options. release = 11
47
48
}
48
49
49
- if (! it. name. startsWith(' xpath-to-xml-scala' )) {
50
- apply plugin : ' org.beryx.jar'
51
-
52
- moduleConfig {
53
- moduleInfoPath = ' src/main/module/module-info.java'
54
- multiReleaseVersion = 11
55
- version = project. version
56
- neverCompileModuleInfo = true
57
- }
50
+ moduleConfig {
51
+ moduleInfoPath = ' src/main/module/module-info.java'
52
+ multiReleaseVersion = 11
53
+ version = project. version
54
+ neverCompileModuleInfo = true
58
55
}
59
56
60
57
test {
Original file line number Diff line number Diff line change 1
1
module com .github .simych .xpath .core {
2
- requires transitive java .xml ;
2
+ requires transitive java .xml ;
3
3
4
- exports com .github .simy4 .xpath ;
5
- exports com .github .simy4 .xpath .navigator ;
6
- exports com .github .simy4 .xpath .spi ;
7
- exports com .github .simy4 .xpath .util ;
4
+ exports com .github .simy4 .xpath ;
5
+ exports com .github .simy4 .xpath .navigator ;
6
+ exports com .github .simy4 .xpath .spi ;
7
+ exports com .github .simy4 .xpath .util ;
8
8
9
- uses com .github .simy4 .xpath .spi .NavigatorSpi ;
9
+ uses com .github .simy4 .xpath .spi .NavigatorSpi ;
10
10
}
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ dependencies {
23
23
testImplementation libs. bundles. scalatest. v3
24
24
}
25
25
26
+ moduleConfig {
27
+ moduleInfoPath = ' src/main/module-3/module-info.java'
28
+ }
29
+
26
30
javadocJar {
27
31
dependsOn scaladoc
28
32
from scaladoc
Original file line number Diff line number Diff line change
1
+ module com .github .simych .xpath .scala {
2
+ requires transitive com .github .simych .xpath .core ;
3
+ requires org .scala .lang .scala3 .library ;
4
+ requires scala .library ;
5
+ requires scala .xml ;
6
+
7
+ exports com .github .simy4 .xpath .scala ;
8
+ exports com .github .simy4 .xpath .scala .impl ;
9
+
10
+ provides com .github .simy4 .xpath .spi .NavigatorSpi with
11
+ com .github .simy4 .xpath .scala .spi .ScalaXmlNavigatorSpi ;
12
+ }
Original file line number Diff line number Diff line change
1
+ module com .github .simych .xpath .scala {
2
+ requires transitive com .github .simych .xpath .core ;
3
+ requires scala .library ;
4
+ requires scala .xml ;
5
+
6
+ exports com .github .simy4 .xpath .scala ;
7
+ exports com .github .simy4 .xpath .scala .impl ;
8
+
9
+ provides com .github .simy4 .xpath .spi .NavigatorSpi with
10
+ com .github .simy4 .xpath .scala .spi .ScalaXmlNavigatorSpi ;
11
+ }
You can’t perform that action at this time.
0 commit comments