2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00

move logging dep to core (#294)

This commit is contained in:
Rebecca Star 2018-10-19 10:58:39 -04:00 committed by GitHub
parent db6412b0d1
commit 8adc4e6073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -87,7 +87,7 @@ lazy val testSettings = Seq(
lazy val apiSettings = Seq(
name := "api",
libraryDependencies ++= compileDependencies ++ apiTestDependencies.map(_ % "test, it"),
libraryDependencies ++= apiDependencies ++ apiTestDependencies.map(_ % "test, it"),
mainClass := Some("vinyldns.api.Boot"),
javaOptions in reStart += "-Dlogback.configurationFile=test/logback.xml",
coverageExcludedPackages := ".*Boot.*"

View File

@ -16,13 +16,12 @@ object Dependencies {
lazy val awsV = "1.11.423"
lazy val jaxbV = "2.3.0"
lazy val compileDependencies = Seq(
lazy val apiDependencies = Seq(
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
"de.heikoseeberger" %% "akka-http-json4s" % "1.21.0",
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"ch.qos.logback" % "logback-classic" % "1.0.7",
"com.aaronbedra" % "orchard" % "0.1.1",
"com.amazonaws" % "aws-java-sdk-core" % awsV withSources(),
"com.github.ben-manes.caffeine" % "caffeine" % "2.2.7",
@ -60,7 +59,8 @@ object Dependencies {
"com.github.pureconfig" %% "pureconfig-cats-effect" % pureConfigV,
"javax.xml.bind" % "jaxb-api" % jaxbV % "provided",
"com.sun.xml.bind" % "jaxb-core" % jaxbV,
"com.sun.xml.bind" % "jaxb-impl" % jaxbV
"com.sun.xml.bind" % "jaxb-impl" % jaxbV,
"ch.qos.logback" % "logback-classic" % "1.0.7"
)
lazy val dynamoDBDependencies = Seq(