Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

addd Scalaz Bintray Repo resolver #18

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,34 @@
import com.typesafe.sbt.packager.docker._
enablePlugins(DockerPlugin)



name := "activator-akka-cassandra"

version := "1.1"

scalaVersion := "2.10.4"

resolvers += "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"

resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"

resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"

resolvers += "spray repo" at "http://repo.spray.io"

resolvers += "spray nightlies" at "http://nightlies.spray.io"

maintainer in Docker := "Ahmad Aabed <[email protected]>"

dockerRepository := Some("registry.marathon.mesos:5000")

dockerUpdateLatest := true

dockerBaseImage := "java"

enablePlugins(JavaAppPackaging)

libraryDependencies ++= {
val akkaVersion = "2.3.6"
val sprayVersion = "1.3.1"
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ addSbtPlugin("io.spray" % "sbt-revolver" % "0.7.2")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.6")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.5")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.3")

addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
2 changes: 1 addition & 1 deletion src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ akka-cassandra {
cassandra {
port: 9042
hosts: [
"127.0.0.1"
"cassandra.marathon.mesos"
]
}
}
Expand Down