From 8120fca0ae4cfaf5a9341220c576153e722c5148 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 30 Jun 2019 19:00:10 +0100 Subject: [PATCH] [sbt] Only specify organization once --- build.sbt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 4ca0481..e8d0759 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ inThisBuild(List( - organization := "net.kemitix", + organization := "net.kemitix.thorp", sonatypeProfileName := "net.kemitix", homepage := Some(url("https://github.com/kemitix/thorp")), licenses := List("mit" -> url("https://opensource.org/licenses/MIT")), @@ -14,7 +14,6 @@ inThisBuild(List( )) val commonSettings = Seq( - organization := "net.kemitix.thorp", scalaVersion := "2.12.8", test in assembly := {} )