Closed karthikeyan-kandasamy closed 8 years ago
I am assuming you added the following line to your build.sbt resolvers += "Kaliber Internal Repository" at "https://jars.kaliber.io/artifactory/libs-release-local"
@Hayena Thanks for the response. No. I have added the below lines in my build.sbt.
name := "my-app"
version := "1.0.0"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
specs2 % Test,
"net.kaliber" %% "play-s3" % "8.0.0",
"mysql" % "mysql-connector-java" % "5.1.22",
"com.typesafe.play" %% "anorm" % "2.5.0",
"com.typesafe.play" %% "play-slick" % "0.8.1",
"org.apache.commons" % "commons-email" % "1.3.3",
"com.typesafe.play" % "play-mailer_2.11" % "5.0.0-M1"
)
unmanagedResourceDirectories in Test <+= baseDirectory(_ / "target/web/public/test")
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"
I can use the plugin after added the resolver - resolvers += "Kaliber Internal Repository" at "https://jars.kaliber.io/artifactory/libs-release-local"
I am using play 2.5.3 and I am trying to add the "play-s3" plugin in my build.sbt. But I got the below issue.