Skip to content

Commit

Permalink
Fix error on missing dependencie (asm#asm;3.3.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
leodagdag committed Oct 13, 2012
1 parent 977aa9e commit d22ff89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Build.scala
Expand Up @@ -12,7 +12,7 @@ object Play2MorphiaPluginBuild extends Build {
file("."),
settings = buildSettings ++ Seq(
libraryDependencies := runtime ++ test,
publishMavenStyle := false,
publishMavenStyle := true,
publishTo := Some(githubRepository),
scalacOptions ++= Seq("-Xlint","-deprecation", "-unchecked","-encoding", "utf8"),
javacOptions ++= Seq("-encoding", "utf8", "-g"),
Expand All @@ -33,7 +33,7 @@ object Play2MorphiaPluginBuild extends Build {
"com.google.code.morphia" % "morphia" % "1.00-SNAPSHOT",
"com.google.code.morphia" % "morphia-logging-slf4j" % "0.99",
"com.google.code.morphia" % "morphia-validation" % "0.99",
"cglib" % "cglib-nodep" % "[2.1_3,)",
"cglib" % "cglib" % "[2.1_3,)",
"com.thoughtworks.proxytoys" % "proxytoys" % "1.0",
"play" %% "play" % "2.0.4" % "compile" notTransitive(),
("org.springframework" % "spring-core" % "3.0.7.RELEASE" % "compile" notTransitive())
Expand All @@ -49,7 +49,7 @@ object Play2MorphiaPluginBuild extends Build {

object BuildSettings {
val buildOrganization = "leodagdag"
val buildVersion = "0.0.11"
val buildVersion = "0.0.12"
val buildScalaVersion = "2.9.1"
val buildSbtVersion = "0.11.3"
val buildSettings = Defaults.defaultSettings ++ Seq (
Expand Down

0 comments on commit d22ff89

Please sign in to comment.