mirror of
https://github.com/lightbend/config.git
synced 2025-03-18 21:30:30 +08:00
0.1.3 and move to the proper publish url (maven- not ivy-)
This commit is contained in:
parent
c7f6428ccb
commit
27980ab82c
@ -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"
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user