Skip to content

Commit

Permalink
Fix settings: organization/homepage settings
Browse files Browse the repository at this point in the history
The resulting POMs now look like this:

    <url>https://github.com/gtri/typesafeconfig-extensions</url>
    <organization>
        <name>Georgia Tech Research Institute, CTISL</name>
        <url>http://gtri.gatech.edu/ctisl</url>
    </organization>
  • Loading branch information
chris-martin committed Oct 23, 2013
1 parent da724e2 commit 364ccac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ object Build extends Build {
lazy val baseSettings: Seq[Setting[_]] = Seq(
version := "1.0.1-SNAPSHOT",
organization := "edu.gatech.gtri.typesafeconfig-extensions",
homepage := Some(url(
"https://github.com/gtri/typesafeconfig-extensions"
)),
organizationName := "Georgia Tech Research Institute, CTISL",
organizationHomepage := Some(url("http://gtri.gatech.edu/ctisl")),
homepage := Some(url("https://github.com/gtri/typesafeconfig-extensions")),
licenses := Seq("The Apache Software License, Version 2.0" ->
url("http://www.apache.org/licenses/LICENSE-2.0.txt")),
scalaVersion := "2.10.0",
Expand Down

0 comments on commit 364ccac

Please sign in to comment.