0.1.3 and move to the proper publish url (maven- not ivy-)

This commit is contained in:
Havoc Pennington 2011-12-02 21:48:29 -05:00
parent c7f6428ccb
commit 27980ab82c
2 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,7 @@
// Versions and git tags should follow: http://semver.org/
// except using -SNAPSHOT instead of without hyphen.
version in GlobalScope := "0.1.2-SNAPSHOT"
version in GlobalScope := "0.1.3"
organization in GlobalScope := "com.typesafe.config"

View File

@ -34,7 +34,9 @@ doc in Compile <<= JavadocKeys.javadoc
publishTo <<= (isSnapshot) { snapshot =>
import Classpaths._
Some(if (snapshot) typesafeSnapshots else typesafeResolver)
val releases = "Maven releases" at "http://repo.typesafe.com/typesafe/maven-releases/"
val snapshots = "Maven snapshots" at "http://repo.typesafe.com/typesafe/maven-snapshots/"
Some(if (snapshot) snapshots else releases)
}
publishMavenStyle := true