summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2014-01-03 08:53:40 -0700
committerRocky Madden <git@rockymadden.com>2014-01-03 08:53:40 -0700
commitf8bbbb6653d8c2cb87e186948d238830f9b56673 (patch)
tree978e50288d96286d564f8f823b1dd79015a33572
parent04ecb8e68522e5446fc7ec5afd14e5295ff70e79 (diff)
downloadstringmetric-f8bbbb6653d8c2cb87e186948d238830f9b56673.tar.gz
stringmetric-f8bbbb6653d8c2cb87e186948d238830f9b56673.tar.bz2
stringmetric-f8bbbb6653d8c2cb87e186948d238830f9b56673.zip
Sorted by keys.
-rw-r--r--project/build.scala57
1 files 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 :=
<url>http://rockymadden.com/stringmetric/</url>
- <licenses>
- <license>
- <name>MIT</name>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <scm>
- <url>git@github.com:rockymadden/stringmetric.git</url>
- <connection>scm:git:git@github.com:rockymadden/stringmetric.git</connection>
- </scm>
- <developers>
- <developer>
- <id>rockymadden</id>
- <name>Rocky Madden</name>
- <url>http://rockymadden.com/</url>
- </developer>
- </developers>)
+ <licenses>
+ <license>
+ <name>MIT</name>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+ <scm>
+ <url>git@github.com:rockymadden/stringmetric.git</url>
+ <connection>scm:git:git@github.com:rockymadden/stringmetric.git</connection>
+ </scm>
+ <developers>
+ <developer>
+ <id>rockymadden</id>
+ <name>Rocky Madden</name>
+ <url>http://rockymadden.com/</url>
+ </developer>
+ </developers>,
+ 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)
}