https://github.com/yukihirai0505/scala-request-json
scala request json library
https://github.com/yukihirai0505/scala-request-json
json sbt scala scala-library
Last synced: 2 months ago
JSON representation
scala request json library
- Host: GitHub
- URL: https://github.com/yukihirai0505/scala-request-json
- Owner: yukihirai0505
- License: mit
- Created: 2017-05-27T08:27:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-02T02:10:38.000Z (over 8 years ago)
- Last Synced: 2025-01-13T13:49:14.678Z (over 1 year ago)
- Topics: json, sbt, scala, scala-library
- Language: Scala
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Prerequisites
Scala 2.11.+ is supported.
## Setup
### sbt
If you don't have it already, make sure you add the Maven Central as resolver in your SBT settings:
```scala
resolvers += Resolver.sonatypeRepo("releases")
```
Also, you need to include the library as your dependency:
```scala
libraryDependencies += "com.yukihirai0505" % "scala-request-json_2.11" % "1.6"
```
https://search.maven.org/#artifactdetails%7Ccom.yukihirai0505%7Cscala-request-json_2.11%7C1.6%7Cjar
## Submodule usage
Add submodule
```
$ git submodule add git@github.com:yukihirai0505/scala-request-json.git git-submodules/scala-request-json
```
Update submodules
```
$ git submodule update --init --recursive
```
```
$ git submodule foreach git pull origin master
```