This enables source to image for Scala applications.
To install s2i Scala run:
$ oc process \
-f https://raw.githubusercontent.com/OutThereLabs/s2i-scala/master/buildconfig.yaml \
| oc create -f -
You can also use s2i Scala for local development.
You can do a binary build by attaching the contents of target/universal/stage insteaf of source code:
sbt stage
s2i build --pull-policy=never --copy target/universal/stage outtherelabs/s2i-scala my-app
To run the tests first install greadlink if you are on a mac
$ brew install coreutils
Then use the MAKEFILE
$ cd java8 && make test