diff --git a/build.sbt b/build.sbt index b090782..917e4cb 100644 --- a/build.sbt +++ b/build.sbt @@ -1,8 +1,4 @@ -name := "jmustache" - -version := "1.5-SNAPSHOT" - -organization := "com.samskivert" +seq(samskivert.POMUtil.pomToSettings("pom.xml") :_*) crossPaths := false @@ -12,10 +8,7 @@ javacOptions ++= Seq( autoScalaLibrary := false // no scala-library dependency -libraryDependencies ++= Seq( - "junit" % "junit" % "4.+" % "test", - "com.novocode" % "junit-interface" % "0.7" % "test->default" -) +libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test->default" // filter the super-source directory from the build unmanagedSources in Compile ~= (_.filterNot(_.getPath.indexOf("com/samskivert/gwt") != -1)) diff --git a/pom.xml b/pom.xml index f8b4f7e..5f638ad 100644 --- a/pom.xml +++ b/pom.xml @@ -42,6 +42,12 @@ + + com.google.gwt + gwt-dev + 2.4.0 + test + com.google.gwt gwt-user diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 0000000..07c3925 --- /dev/null +++ b/project/plugins.sbt @@ -0,0 +1 @@ +libraryDependencies += "com.samskivert" % "sbt-pom-util" % "0.5"