-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module com.github.simych.xpath.core { | ||
requires transitive java.xml; | ||
requires transitive java.xml; | ||
|
||
exports com.github.simy4.xpath; | ||
exports com.github.simy4.xpath.navigator; | ||
exports com.github.simy4.xpath.spi; | ||
exports com.github.simy4.xpath.util; | ||
exports com.github.simy4.xpath; | ||
exports com.github.simy4.xpath.navigator; | ||
exports com.github.simy4.xpath.spi; | ||
exports com.github.simy4.xpath.util; | ||
|
||
uses com.github.simy4.xpath.spi.NavigatorSpi; | ||
uses com.github.simy4.xpath.spi.NavigatorSpi; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module com.github.simych.xpath.scala { | ||
requires transitive com.github.simych.xpath.core; | ||
requires org.scala.lang.scala3.library; | ||
requires scala.library; | ||
requires scala.xml; | ||
|
||
exports com.github.simy4.xpath.scala; | ||
exports com.github.simy4.xpath.scala.impl; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.scala.spi.ScalaXmlNavigatorSpi; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module com.github.simych.xpath.scala { | ||
requires transitive com.github.simych.xpath.core; | ||
requires scala.library; | ||
requires scala.xml; | ||
|
||
exports com.github.simy4.xpath.scala; | ||
exports com.github.simy4.xpath.scala.impl; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.scala.spi.ScalaXmlNavigatorSpi; | ||
} |