-
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
23 changed files
with
77 additions
and
25 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
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,9 @@ | ||
module com.github.simych.xpath.gson { | ||
requires transitive com.github.simych.xpath.core; | ||
requires com.google.gson; | ||
|
||
exports com.github.simy4.xpath.gson.spi; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.gson.spi.GsonNavigatorSpi; | ||
} |
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,7 @@ | ||
module com.github.simych.xpath.jackson { | ||
requires transitive com.github.simych.xpath.core; | ||
requires com.fasterxml.jackson.databind; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.jackson.spi.JacksonNavigatorSpi; | ||
} |
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,7 @@ | ||
module com.github.simych.xpath.json { | ||
requires transitive com.github.simych.xpath.core; | ||
requires jakarta.json; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.json.spi.JakartaJsonNavigatorSpi; | ||
} |
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,10 @@ | ||
module com.github.simych.xpath.core { | ||
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; | ||
|
||
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,6 @@ | ||
module com.github.simych.xpath.dom { | ||
requires transitive com.github.simych.xpath.core; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.dom.spi.DomNavigatorSpi; | ||
} |
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,7 @@ | ||
module com.github.simych.xpath.dom4j { | ||
requires transitive com.github.simych.xpath.core; | ||
requires org.dom4j; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.dom4j.spi.Dom4jNavigatorSpi; | ||
} |
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,7 @@ | ||
module com.github.simych.xpath.jdom { | ||
requires transitive com.github.simych.xpath.core; | ||
requires org.jdom2; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with | ||
com.github.simy4.xpath.jdom.spi.JDomNavigatorSpi; | ||
} |
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,5 +1,3 @@ | ||
ext.moduleName = 'com.github.simych.xpath.scala' | ||
|
||
apply plugin: 'scala' | ||
|
||
buildDir = 'build-2.12' | ||
|
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,5 +1,3 @@ | ||
ext.moduleName = 'com.github.simych.xpath.scala' | ||
|
||
apply plugin: 'scala' | ||
|
||
buildDir = 'build-2.13' | ||
|
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
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,6 @@ | ||
module com.github.simych.xpath.test { | ||
requires transitive java.xml; | ||
|
||
exports com.github.simy4.xpath.fixtures; | ||
exports com.github.simy4.xpath.helpers; | ||
} |
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,6 @@ | ||
module com.github.simych.xpath.xom { | ||
requires transitive com.github.simych.xpath.core; | ||
requires nu.xom; | ||
|
||
provides com.github.simy4.xpath.spi.NavigatorSpi with com.github.simy4.xpath.xom.spi.XomNavigatorSpi; | ||
} |