uimaScala
uimaScala copied to clipboard
No available working version of the library
When I try to use uimaScala in SBT I get unresolved dependency errors with the following settings:
resolvers += Resolver.sonatypeRepo("snapshots"),
libraryDependencies ++= Seq(
"com.github.jenshaase.uimascala" % "uimascala-core_2.10" % "0.5.0-SNAPSHOT",
"com.github.jenshaase.uimascala" % "uimascala-core_2.11" % "0.5.0-SNAPSHOT",
"com.github.jenshaase.uimascala" % "uimascala-core_2.11" % "0.6.2-SNAPSHOT",
"com.github.jenshaase.uimascala" % "core_2.11" % "0.5.0-SNAPSHOT",
"com.github.jenshaase.uimascala" % "core_2.11" % "0.5.2-SNAPSHOT"
)
With core_2.11-0.5.2-SNAPSHOT
I get a premature end of file error from SBT (since it looks like an empty file on the Sonatype servers), all the others just seem to be missing from the servers entirely.
I've also tried using the GitHub repo as a SBT dependency directly, but I get errors about 'core.description` not found when I follow the README example.
Is there somewhere to get a fully packaged version of the library currently?