From f8bbbb6653d8c2cb87e186948d238830f9b56673 Mon Sep 17 00:00:00 2001 From: Rocky Madden Date: Fri, 3 Jan 2014 08:53:40 -0700 Subject: Sorted by keys. --- project/build.scala | 57 +++++++++++++++++++++++++++-------------------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/project/build.scala b/project/build.scala index a667383..557b21f 100644 --- a/project/build.scala +++ b/project/build.scala @@ -4,52 +4,53 @@ import Keys._ object CoreBuild extends Build { lazy val root = Project("stringmetric", file("."), settings = Defaults.defaultSettings ++ Seq( - organization := "com.rockymadden.stringmetric", - name := "stringmetric", - version := "0.27.0", - scalaVersion := "2.10.3", - resolvers ++= Seq(DefaultMavenRepository), - publishTo := Some("Sonatype" at "https://oss.sonatype.org/service/local/staging/deploy/maven2"), - publishMavenStyle := true, credentials += Credentials(Path.userHome / ".ivy2" / ".credentials"), + name := "stringmetric", + organization := "com.rockymadden.stringmetric", pomExtra := http://rockymadden.com/stringmetric/ - - - MIT - repo - - - - git@github.com:rockymadden/stringmetric.git - scm:git:git@github.com:rockymadden/stringmetric.git - - - - rockymadden - Rocky Madden - http://rockymadden.com/ - - ) + + + MIT + repo + + + + git@github.com:rockymadden/stringmetric.git + scm:git:git@github.com:rockymadden/stringmetric.git + + + + rockymadden + Rocky Madden + http://rockymadden.com/ + + , + publishMavenStyle := true, + publishTo := Some("Sonatype" at "https://oss.sonatype.org/service/local/staging/deploy/maven2"), + resolvers ++= Seq(DefaultMavenRepository), + scalaVersion := "2.10.3", + version := "0.27.0" + ) ).aggregate(core, cli) lazy val core: Project = Project("core", file("core"), settings = (root.settings: Seq[sbt.Def.Setting[_]]) ++ Seq( - name := "stringmetric-core", libraryDependencies ++= Seq( "junit" % "junit" % "4.11" % "test", "org.scalatest" %% "scalatest" % "2.0.M5b" % "test" - ) + ), + name := "stringmetric-core" ) ) lazy val cli: Project = Project("cli", file("cli"), settings = (root.settings: Seq[sbt.Def.Setting[_]]) ++ Seq( - name := "stringmetric-cli", libraryDependencies ++= Seq( "junit" % "junit" % "4.11" % "test", "org.scalatest" %% "scalatest" % "2.0.M5b" % "test" - ) + ), + name := "stringmetric-cli" ) ).dependsOn(core) } -- cgit v1.2.3