Minor changes in build.sbt

This commit is contained in:
Alexandre Archambault 2015-11-21 14:23:07 +01:00
parent 09d58e9bd7
commit 55d1ec0887
1 changed files with 5 additions and 14 deletions

View File

@ -10,26 +10,17 @@ lazy val publishingSettings = Seq(
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
licenses := Seq("Apache 2.0" -> url("http://opensource.org/licenses/Apache-2.0")),
homepage := Some(url("https://github.com/alexarchambault/coursier")),
developers := List(
Developer("alexarchambault", "Alexandre Archambault", "", url("https://github.com/alexarchambault"))
),
pomExtra := {
<url>https://github.com/alexarchambault/coursier</url>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/alexarchambault/coursier.git</connection>
<developerConnection>scm:git:git@github.com:alexarchambault/coursier.git</developerConnection>
<url>github.com/alexarchambault/coursier.git</url>
</scm>
<developers>
<developer>
<id>alexarchambault</id>
<name>Alexandre Archambault</name>
<url>https://github.com/alexarchambault</url>
</developer>
</developers>
},
credentials += {
Seq("SONATYPE_USER", "SONATYPE_PASS").map(sys.env.get) match {