To contribute source code to this repository, please read our Contributor Agreement, and then execute it by running this notebook and following the instructions.
- Scala 2.12.2
- sbt 1.2.8
To generate JavaScript artifact (generated at ./js/module/webapi-parser.js), run:
sbt webapiJS/fullOptJS && ./scripts/buildjs.shTo generate regular (not "fat") .jar, run:
sbt packageTo generate a "fat" .jar (generated at ./webapi-parser-X.Y.Z.jar), run:
sbt assembleFatJarand then you can copy/move that JAR to your libs directory and depend on it directly:
dependencies {
compile files('libs/webapi-parser-X.Y.Z.jar')
}sbt test