I can access my Archiva maven repo in my local LAN just fine via Chrome or other browser (I can login and see the latest jar file and download but for some reason sbt does not do it. It's not behind a proxy but it is on a different subnet that firewall rules have allowed)
[error] Server access Error: Operation timed out (Connection timed out) url=http://mylocalarchiva:8080/repository/internal/com/example/mypackage/myapp/
That URL is correct and when I click it, it immediately shows me the index of the application with all the versions.
Anybody else experience this? know what else to check? SBT is pretty basic.
build.sbt:
resolvers ++= Seq(
"mylocalmvnrepo" at "http://mylocalarchiva:8080/repository/internal/")
libraryDependencies ++= Seq(
"com.example.mypackage" % "myapp" % "1.2.+",
...)
Thanks