aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes.rudolph@gmail.com>2016-02-29 14:08:17 +0100
committerJohannes Rudolph <johannes.rudolph@gmail.com>2016-02-29 14:08:17 +0100
commit6ccb744c22c767df71b74cccc19fef31fb790e7c (patch)
tree433d2505c56ca173b1f5538a66ec3bb089c0ae8e
parentfd5e148e31a649d09d76e19980e2845a90ea5ace (diff)
downloadsbt-boilerplate-6ccb744c22c767df71b74cccc19fef31fb790e7c.tar.gz
sbt-boilerplate-6ccb744c22c767df71b74cccc19fef31fb790e7c.tar.bz2
sbt-boilerplate-6ccb744c22c767df71b74cccc19fef31fb790e7c.zip
cleanup build
-rw-r--r--build.sbt32
-rw-r--r--project.sbt15
-rw-r--r--project/plugins.sbt2
3 files changed, 16 insertions, 33 deletions
diff --git a/build.sbt b/build.sbt
index 577d715..87eeaf3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,40 +1,10 @@
-name := "sbt-boilerplate"
-
-organization := "io.spray"
-
-version := "0.6.0-SNAPSHOT"
-
-description := "An SBT plugin for simple generation of boilerplate"
-
-startYear := Some(2012)
-
-homepage := Some(url("http://github.com/sbt/sbt-boilerplate"))
-
-organizationHomepage := Some(url("http://spray.io"))
-
-licenses in GlobalScope += "BSD" -> url("https://github.com/sbt/sbt-boilerplate/raw/master/LICENSE")
-
sbtPlugin := true
scalacOptions := Seq("-deprecation", "-encoding", "utf8")
-CrossBuilding.crossSbtVersions := Seq("0.11.2", "0.11.3", "0.12", "0.13")
-
-///////////////
-// ls-sbt
-///////////////
-
-seq(lsSettings :_*)
-
-(LsKeys.tags in LsKeys.lsync) := Seq("sbt-plugin", "sbt", "plugin", "boilerplate", "code-generation")
-
-(LsKeys.docsUrl in LsKeys.lsync) <<= homepage
-
-crossBuildingSettings
-
libraryDependencies <+= scalaVersion {
case v if v startsWith "2.9." => "org.specs2" % "specs2_2.9.3" % "1.12.4.1" % "test"
- case "2.10.2" => "org.specs2" %% "specs2" % "2.3.13" % "test"
+ case "2.10.4" => "org.specs2" %% "specs2" % "2.3.13" % "test"
}
ScalariformSupport.formatSettings \ No newline at end of file
diff --git a/project.sbt b/project.sbt
new file mode 100644
index 0000000..4e5f6f2
--- /dev/null
+++ b/project.sbt
@@ -0,0 +1,15 @@
+name := "sbt-boilerplate"
+
+organization := "io.spray"
+
+version := "0.6.0-SNAPSHOT"
+
+description := "An SBT plugin for simple generation of boilerplate"
+
+startYear := Some(2012)
+
+homepage := Some(url("http://github.com/sbt/sbt-boilerplate"))
+
+organizationHomepage := Some(url("http://spray.io"))
+
+licenses in GlobalScope += "BSD" -> url("https://github.com/sbt/sbt-boilerplate/raw/master/LICENSE")
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 0813d27..92449de 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,7 +1,5 @@
addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.3")
-addSbtPlugin("net.virtual-void" % "sbt-cross-building" % "0.8.1")
-
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.2.0")
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.2") \ No newline at end of file