Hello!
Posting here as somehow Jira link does not seem to be working for me.
I'm trying to build marathon from source, at it is failing on missing dependencies that I suppose should have been hosted on
"Mesosphere Public Repo" at "https://downloads.mesosphere.com/maven",
"Mesosphere Snapshot Repo" at "https://downloads.mesosphere.com/maven-snapshot"
but downloads.mesosphere.com seems to be down.
I found references to downloads.mesosphere.io, but down as well.
Namely, it's missing com.mesosphere.usi:test-utils:0.1.12, mesosphere.marathon:api-console:3.0.8-accept and mesosphere.marathon:ui:1.3.2.
I'll try to build those locally, but I'm not optimistic for api-console which is an npm project.
I also tried to exclude those dependencies with
val excludeApiConsole = ExclusionRule(organization = "mesosphere.marathon", name = "api-console")
val excludeTestUtils = ExclusionRule(organization = "com.mesosphere.usi", name = "test-utils")
val excludeUi = ExclusionRule(organization = "mesosphere.marathon", name = "ui")
excludeDependencies ++= Seq(
excludeApiConsole,
excludeTestUtils,
excludeUi
)
at the top of the sbt file, but it does not seem to be working.
Can you please help me?
Thanks!
Edit: OK, I removed said dependencies from the sbt file, now it builds, but doesn't test. And I fear runtime might be missing some much needed parts.