-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added jitpack.yml file * Added module-info file * Added missing package-info files * Incremented patch version * Renamed module
- Loading branch information
1 parent
bd10f50
commit 4a9c51e
Showing
10 changed files
with
44 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ plugins { | |
id("maven-publish") | ||
} | ||
|
||
version = "2.1.2" | ||
version = "2.1.3" | ||
|
||
java { | ||
toolchain { | ||
|
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,2 @@ | ||
jdk: | ||
- openjdk17 |
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 @@ | ||
/** | ||
* Defines the sola-json API. | ||
*/ | ||
module technology.sola.json { | ||
exports technology.sola.json; | ||
exports technology.sola.json.builder; | ||
exports technology.sola.json.exception; | ||
exports technology.sola.json.mapper; | ||
exports technology.sola.json.parser; | ||
exports technology.sola.json.serializer; | ||
exports technology.sola.json.tokenizer; | ||
} |
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,4 @@ | ||
/** | ||
* This package provides builders for {@link technology.sola.json.JsonArray} and {@link technology.sola.json.JsonObject}. | ||
*/ | ||
package technology.sola.json.builder; |
4 changes: 4 additions & 0 deletions
4
src/main/java/technology/sola/json/exception/package-info.java
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,4 @@ | ||
/** | ||
* This package provides various exceptions for errors that may happen during various sola-json operations. | ||
*/ | ||
package technology.sola.json.exception; |
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,4 @@ | ||
/** | ||
* This package provides classes for mapping between Java objects and JSON. | ||
*/ | ||
package technology.sola.json.mapper; |
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,4 @@ | ||
/** | ||
* This package provides the core classes for sola-json. | ||
*/ | ||
package technology.sola.json; |
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,4 @@ | ||
/** | ||
* This package provides functionality for parsing JSON utilizing a {@link technology.sola.json.tokenizer.SolaJsonTokenizer}. | ||
*/ | ||
package technology.sola.json.parser; |
5 changes: 5 additions & 0 deletions
5
src/main/java/technology/sola/json/serializer/package-info.java
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,5 @@ | ||
/** | ||
* This package provides functionality for serializing {@link technology.sola.json.JsonElement}, {@link technology.sola.json.JsonObject} | ||
* and {@link technology.sola.json.JsonArray}. | ||
*/ | ||
package technology.sola.json.serializer; |
4 changes: 4 additions & 0 deletions
4
src/main/java/technology/sola/json/tokenizer/package-info.java
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,4 @@ | ||
/** | ||
* This package provides functionality for tokenizing a JSON string. | ||
*/ | ||
package technology.sola.json.tokenizer; |