forked from google/gson
-
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.
Add READMEs to Maven modules (google#2039)
* Add READMEs to Maven modules * Address feedback
- Loading branch information
1 parent
6ffcdf3
commit abd2191
Showing
7 changed files
with
34 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# gson-codegen | ||
|
||
This Maven module contains the source code for automatically generating Gson type adapters. | ||
|
||
:warning: This module is currently non-functional and might be removed in the future. |
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 @@ | ||
# android-proguard-example | ||
|
||
Example Android project showing how to properly configure [ProGuard](https://www.guardsquare.com/proguard). | ||
ProGuard is a tool for 'shrinking' and obfuscating compiled classes. It can rename methods and fields, | ||
or remove them if they appear to be unused. This can cause issues for Gson which uses Java reflection to | ||
access the fields of a class. It is necessary to configure ProGuard to make sure that Gson works correctly. | ||
|
||
Also have a look at the [ProGuard manual](https://www.guardsquare.com/manual/configuration/usage#keepoverview) | ||
for more details on how ProGuard can be configured. |
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 @@ | ||
# extras | ||
|
||
This Maven module contains the source code for supplementary Gson features which | ||
are not included by default. | ||
|
||
The artifacts created by this module are currently not deployed to Maven Central. |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
# gson | ||
|
||
This Maven module contains the Gson source code. The artifacts created by this module | ||
are deployed to Maven Central under the coordinates `com.google.code.gson:gson`. |
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,3 @@ | ||
# metrics | ||
|
||
This Maven module contains the source code for running internal benchmark tests against Gson. |
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 @@ | ||
# proto | ||
|
||
This Maven module contains the source code for a JSON serializer and deserializer for | ||
[Protocol Buffers (protobuf)](https://developers.google.com/protocol-buffers/docs/javatutorial) | ||
messages. | ||
|
||
The artifacts created by this module are currently not deployed to Maven Central. |