This library provides a set of implicit transformations and routines that reduce the boilerplate needed to accomplish some common tasks in Scala.
- To generate a package that can be referenced from other projects:
sbt package
then find the result intarget/scala-2.13/
(or similar) folder.
libraryDependencies += "org.hathitrust.htrc" %% "scala-utils" % VERSION
Scala 2.12.x:
<dependency>
<groupId>org.hathitrust.htrc</groupId>
<artifactId>scala-utils_2.12</artifactId>
<version>VERSION</version>
</dependency>
Scala 2.13.x:
<dependency>
<groupId>org.hathitrust.htrc</groupId>
<artifactId>scala-utils_2.13</artifactId>
<version>VERSION</version>
</dependency>