@@ -788,4 +788,55 @@ build += {
788
788
extra.exclude: ["catsJVM"]
789
789
}
790
790
791
+ ${vars.base} {
792
+ name: "conductr-lib"
793
+ uri: ${vars.uris.conductr-lib-uri}
794
+ extra.exclude: [
795
+ // not our Akka version
796
+ "akka23Common", "akka23ConductRBundleLib", "akka23TestLib"
797
+ // we don't have Lagom yet
798
+ "lagom1ConductRBundleLib"
799
+ // not our Play version
800
+ "play23Common", "play23ConductRBundleLib", "play23ConductRClientLib"
801
+ // also not our Play version
802
+ "play24Common", "play24ConductRBundleLib", "play24ConductRClientLib"
803
+ // "That particular lib shouldn't be processed", says Christopher
804
+ "akka24ConductRClientLib"
805
+ // Play stuff didn't work, maybe try again later?
806
+ "play25ConductRBundleLib", "play25ConductRClientLib", "play25Common"
807
+ ]
808
+ }
809
+
810
+ // this was added because conductr-lib's Play integration depended on it,
811
+ // but we ended up not including that integration (for now anyway?), so
812
+ // nothing depends on this. leaving it in since we might as well, but
813
+ // if it acts up, it can go.
814
+ // forked (December 2016) to get rid of the usual bintray-sbt stuff that
815
+ // makes dbuild upset
816
+ ${vars.base} {
817
+ name: "akka-sse"
818
+ uri: ${vars.uris.akka-sse-uri}
819
+ extra.exclude: ["akka-sse-jmh"] // no benchmarking stuff plz
820
+ // disable scalafmt
821
+ extra.commands: ["set every scalafmt := {}"]
822
+ // but why does scalafmt turn up in libraryDependencies at all?
823
+ // see https://github.com/olafurpg/scalafmt/issues/485#issuecomment-253601375
824
+ check-missing: false
825
+ deps.ignore: [
826
+ "com.geirsson#scalafmt-cli"
827
+ "com.geirsson#scalafmt"
828
+ ]
829
+ }
830
+
831
+ // this was added because conductr-lib's Play integration depended on it,
832
+ // but we ended up not including that integration (for now anyway?), so
833
+ // nothing depends on this. leaving it in since we might as well, but
834
+ // if it acts up, it can go.
835
+ // forked (December 2016) to get rid of the usual bintray-sbt stuff that
836
+ // makes dbuild upset
837
+ ${vars.base} {
838
+ name: "akka-contrib-extra"
839
+ uri: ${vars.uris.akka-contrib-extra-uri}
840
+ }
841
+
791
842
]}
0 commit comments