Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidmweber/mirv
A minimal example of using SBT, native packaging and sub-projects
https://github.com/davidmweber/mirv
Last synced: 11 days ago
JSON representation
A minimal example of using SBT, native packaging and sub-projects
- Host: GitHub
- URL: https://github.com/davidmweber/mirv
- Owner: davidmweber
- Created: 2014-05-16T11:52:41.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-22T11:57:18.000Z (over 10 years ago)
- Last Synced: 2023-08-15T17:45:17.576Z (about 1 year ago)
- Language: Scala
- Size: 188 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MIRV
A minimal example of using SBT, native packaging and sub-projects. Builds are pretty straight forward:
```bash
# Compile and test everything
sbt test
# Run just the server
sbt server/run
# Run the client
sbt client/run
# Build Debian packages (requires fakeroot to be installed)
sbt debian:packageBin
```
The `deb` files will be in `client/target` and `server/target`.### Helpful links
1. SBT native packager [documentation](http://www.scala-sbt.org/sbt-native-packager/)
1. Multiproject packaging Stack Overflow [answer](http://stackoverflow.com/questions/20526275/how-to-use-sbt-native-packager-with-subprojects-sbt-0-13?rq=1)