Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliasstar/simplejson4j
Simple yet general JSON library for Java providing a toJson and fromJson method
https://github.com/eliasstar/simplejson4j
json maven serialization
Last synced: 16 days ago
JSON representation
Simple yet general JSON library for Java providing a toJson and fromJson method
- Host: GitHub
- URL: https://github.com/eliasstar/simplejson4j
- Owner: EliasStar
- License: lgpl-3.0
- Created: 2021-05-24T20:25:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-09T20:39:51.000Z (over 3 years ago)
- Last Synced: 2024-11-08T10:12:02.294Z (2 months ago)
- Topics: json, maven, serialization
- Language: Java
- Homepage: https://eliasstar.github.io/SimpleJson4J/
- Size: 396 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# SimpleJson4J
> Simple yet general JSON library for Java providing a toJson and fromJson method## Downloads
### Jar
Releases can be downloaded [here](https://github.com/EliasStar/SimpleJson4J/releases).
The javadoc can be found in the "javadoc" suffix jar and the "sources" suffix jar includes the raw, uncompiled source code for reference.### Maven
#### pom.xml
Add the following under `project/repositories` tag:
```xmlgithub
SimpleJson4J GitHub Maven Packages
https://maven.pkg.github.com/EliasStar/SimpleJson4J```
Furthermore add the following under `project/dependencies` tag:
```xmleliasstar
simple-json
VERSION```
Replace `VERSION` with a version found under releases, preferably the latest.#### settings.xml
Is located under `~/.m2/settings.xml`.
Add the following under `settings/servers` tag:
```xmlgithub
YOUR_USERNAME
YOUR_PERSONAL_ACCESS_TOKEN```
Be sure to replace `YOUR_USERNAME` and `YOUR_PERSONAL_ACCESS_TOKEN`.## License
SimpleJson4J - Simple yet general JSON library for Java providing a toJson and fromJson method
Copyright (C) 2021 Elias*This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see .