https://github.com/atnos-org/eff
Raw File
Tip revision: 2cca36548f1e13901386b3c877adff5b583c4ec1 authored by Eric Torreborre on 04 April 2017, 16:09:08 UTC
Detach with last (#88)
Tip revision: 2cca365
DEV.md
# Release Process

```
sbt> set every version := "4.0.0"
sbt> cd coreJVM
sbt> testOnly *index* -- html.outdir jvm/target/specs2-reports/site html.nostats html console
sbt> testOnly *site* -- html.outdir jvm/target/specs2-reports/site html.nostats html console
sbt> ghpagesPushSite
sbt> githubRelease EFF-<tag name>
sbt> cd eff
sbt> +publishSigned
sbt> sonatypeReleaseAll
```
back to top