Running

The ocaps artifacts are available in https://bintray.com/wsargent/maven/ocaps-core.

Source code is available in https://github.com/wsargent/ocaps. Issues can be added at https://github.com/wsargent/ocaps/issues.

Dependencies

To add ocaps to your project, add the following resolver to build.sbt:

resolvers += Resolver.bintrayRepo("wsargent","maven")

And add the given library dependency in build.sbt:

sbt
libraryDependencies += "ocaps" %% "ocaps-core" % "$project.stableVersion$"
Maven
<dependency>
  <groupId>ocaps</groupId>
  <artifactId>ocaps-core_2.12</artifactId>
  <version>$project.stableVersion$</version>
</dependency>
Gradle
dependencies {
  compile group: 'ocaps', name: 'ocaps-core_2.12', version: '$project.stableVersion$'
}

Imports

To import the ocaps library classes, please add the following to your Scala files:

import ocaps._
import ocaps.macros._