This is just a quick collection of things that I see coming up over and over again in my projects.
All artifacts are deployed on Maven Central, so no special resolver should be necessary in general.
The individual dependencies with their latest version are the following:
<dependency>
<groupId>com.lkroll</groupId>
<artifactId>common-utils</artifactId>
<version>${PUT LATEST VERSION HERE}</version>
</dependency>
libraryDependencies += "com.lkroll" %% "common-utils-scala" % "PUT LATEST VERSION HERE"
- JVM-only:
libraryDependencies += "com.lkroll" %% "common-data-tools" % "PUT LATEST VERSION HERE"
- Scala.js or mixed:
libraryDependencies += "com.lkroll" %%% "common-data-tools" % "PUT LATEST VERSION HERE"