diff --git a/community.dbuild b/community.dbuild index 13e4a06b6..eddab4d36 100644 --- a/community.dbuild +++ b/community.dbuild @@ -788,4 +788,55 @@ build += { extra.exclude: ["catsJVM"] } + ${vars.base} { + name: "conductr-lib" + uri: ${vars.uris.conductr-lib-uri} + extra.exclude: [ + // not our Akka version + "akka23Common", "akka23ConductRBundleLib", "akka23TestLib" + // we don't have Lagom yet + "lagom1ConductRBundleLib" + // not our Play version + "play23Common", "play23ConductRBundleLib", "play23ConductRClientLib" + // also not our Play version + "play24Common", "play24ConductRBundleLib", "play24ConductRClientLib" + // "That particular lib shouldn't be processed", says Christopher + "akka24ConductRClientLib" + // Play stuff didn't work, maybe try again later? + "play25ConductRBundleLib", "play25ConductRClientLib", "play25Common" + ] + } + + // this was added because conductr-lib's Play integration depended on it, + // but we ended up not including that integration (for now anyway?), so + // nothing depends on this. leaving it in since we might as well, but + // if it acts up, it can go. + // forked (December 2016) to get rid of the usual bintray-sbt stuff that + // makes dbuild upset + ${vars.base} { + name: "akka-sse" + uri: ${vars.uris.akka-sse-uri} + extra.exclude: ["akka-sse-jmh"] // no benchmarking stuff plz + // disable scalafmt + extra.commands: ["set every scalafmt := {}"] + // but why does scalafmt turn up in libraryDependencies at all? + // see https://github.com/olafurpg/scalafmt/issues/485#issuecomment-253601375 + check-missing: false + deps.ignore: [ + "com.geirsson#scalafmt-cli" + "com.geirsson#scalafmt" + ] + } + + // this was added because conductr-lib's Play integration depended on it, + // but we ended up not including that integration (for now anyway?), so + // nothing depends on this. leaving it in since we might as well, but + // if it acts up, it can go. + // forked (December 2016) to get rid of the usual bintray-sbt stuff that + // makes dbuild upset + ${vars.base} { + name: "akka-contrib-extra" + uri: ${vars.uris.akka-contrib-extra-uri} + } + ]} diff --git a/project-refs.conf b/project-refs.conf index 353494281..a760ede32 100644 --- a/project-refs.conf +++ b/project-refs.conf @@ -1,13 +1,16 @@ vars.uris: { acyclic-uri: "https://github.com/lihaoyi/acyclic.git" + akka-contrib-extra-uri: "https://github.com/scalacommunitybuild/akka-contrib-extra.git#community-build-2.12" akka-http-uri: "https://github.com/scalacommunitybuild/akka-http.git#community-build-2.12" akka-more-uri: "https://github.com/akka/akka.git#release-2.4" + akka-sse-uri: "https://github.com/scalacommunitybuild/akka-sse.git#community-build-2.12" akka-uri: "https://github.com/akka/akka.git#release-2.4" argonaut-uri: "https://github.com/argonaut-io/argonaut.git#a84800df9b8e919de741bbae46869d9e6dc783b4" async-uri: "https://github.com/scala/async.git" // breeze-uri: "https://github.com/scalanlp/breeze.git" catalysts-uri: "https://github.com/typelevel/catalysts.git" cats-uri: "https://github.com/typelevel/cats.git" + conductr-lib-uri: "https://github.com/typesafehub/conductr-lib.git" discipline-uri: "https://github.com/typelevel/discipline.git#v0.7" fastparse-uri: "https://github.com/scalacommunitybuild/fastparse.git#no-coursier" fs2-uri: "https://github.com/functional-streams-for-scala/fs2.git#series/0.9"