Skip to content

Commit

Permalink
Merge branch 'fix/backup_bintray_dependencies' into dev/MS#1_Kundenpo…
Browse files Browse the repository at this point in the history
…rtal
  • Loading branch information
AlwinEgger committed May 3, 2021
2 parents 8a4b704 + 5f34e67 commit ccb48ed
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ val buildSettings = Seq(
crossScalaVersions := Seq("2.10.2", "2.10.3", "2.10.4", "2.10.5", "2.11.0", "2.11.1", "2.11.2", "2.11.3", "2.11.4", "2.11.5", "2.11.6", "2.11.7", "2.11.8"),
resolvers += Resolver.sonatypeRepo("snapshots"),
resolvers += Resolver.sonatypeRepo("releases"),
resolvers += "dnvriend at bintray" at "http://dl.bintray.com/dnvriend/maven",
resolvers += "Spray" at "http://repo.spray.io",
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
resolvers += "zalando-maven" at "https://dl.bintray.com/zalando/maven",
// add -Xcheckinit to scalac options to check for null val's during initialization see also: https://docs.scala-lang.org/tutorials/FAQ/initialization-order.html
scalacOptions ++= Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-Ywarn-unused-import", "-feature", "-language:_"),
mainClass in (Compile, run) := Some("ch.openolitor.core.Boot"),
Expand All @@ -65,7 +63,7 @@ val buildSettings = Seq(
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"com.github.dnvriend" %% "akka-persistence-inmemory" % "1.0.5" % "test",
"com.github.dnvriend" %% "akka-persistence-inmemory" % "1.0.5" % "test" from "https://github.com/OpenOlitor/openolitor-legacy-dependencies/raw/master/com.github.dnvriend/akka-persistence-inmemory_2.11/jars/akka-persistence-inmemory_2.11-1.0.5.jar",
"org.specs2" %% "specs2-core" % specs2V % "test",
"org.specs2" %% "specs2-mock" % specs2V % "test",
"org.specs2" %% "specs2-junit" % specs2V % "test",
Expand Down Expand Up @@ -98,7 +96,10 @@ val buildSettings = Seq(
"com.github.daddykotex" %% "courier" % "2.0.0",
"com.github.nscala-time" %% "nscala-time" % "2.16.0",
"com.github.blemale" %% "scaffeine" % "2.2.0",
"de.zalando" %% "beard" % "0.2.0" exclude("ch.qos.logback", "logback-classic"),
"de.zalando" %% "beard" % "0.2.0" exclude("ch.qos.logback", "logback-classic") from "https://github.com/OpenOlitor/openolitor-legacy-dependencies/raw/master/de.zalando/beard_2.11/jars/beard_2.11-0.2.0.jar",
// transitive dependencies of legacy de.zalando.beard
"org.antlr" % "antlr4" % "4.5.2",
"io.monix" %% "monix" % "2.1.0",
"net.codecrete.qrbill" % "qrbill-generator" % "2.4.3",
"io.nayuki" % "qrcodegen" % "1.6.0",
"org.apache.pdfbox" % "pdfbox" % "2.0.20",
Expand Down

0 comments on commit ccb48ed

Please sign in to comment.