[sbt] Only specify organization once

This commit is contained in:
Paul Campbell 2019-06-30 19:00:10 +01:00
parent 88dd2f37a4
commit 8120fca0ae

View file

@ -1,5 +1,5 @@
inThisBuild(List( inThisBuild(List(
organization := "net.kemitix", organization := "net.kemitix.thorp",
sonatypeProfileName := "net.kemitix", sonatypeProfileName := "net.kemitix",
homepage := Some(url("https://github.com/kemitix/thorp")), homepage := Some(url("https://github.com/kemitix/thorp")),
licenses := List("mit" -> url("https://opensource.org/licenses/MIT")), licenses := List("mit" -> url("https://opensource.org/licenses/MIT")),
@ -14,7 +14,6 @@ inThisBuild(List(
)) ))
val commonSettings = Seq( val commonSettings = Seq(
organization := "net.kemitix.thorp",
scalaVersion := "2.12.8", scalaVersion := "2.12.8",
test in assembly := {} test in assembly := {}
) )