diff --git a/publish.sbt b/publish.sbt index 090e5ab..fa6bf7d 100644 --- a/publish.sbt +++ b/publish.sbt @@ -1,6 +1,6 @@ -ThisBuild / scalaVersion := "2.13.8" +ThisBuild / scalaVersion := "2.12.17" ThisBuild / version := "0.1.2" -ThisBuild / organization := "com.gilcloud.fs2" +ThisBuild / organization := "com.gilcloud" ThisBuild / organizationName := "gilcloud" ThisBuild / organizationHomepage := Some(url("http://gilcloud.com/")) sonatypeCredentialHost := "s01.oss.sonatype.org" @@ -9,8 +9,8 @@ sonatypeProfileName := "com.gilcloud" ThisBuild / scmInfo := Some( ScmInfo( - url("https://github.com/gilcloud/fs2-sink"), - "scm:git@github.com:gilcloud/fs2-sink.git" + url("https://github.com/gilcloud/sbt-gitlab"), + "scm:git:git@github.com:gilcloud/sbt-gitlab.git" ) ) ThisBuild / developers := List( @@ -22,12 +22,11 @@ ThisBuild / developers := List( ) ) -ThisBuild / description := "commons sinks for using with fs2" +ThisBuild / description := "gitlab to sbt integrations" ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt")) -ThisBuild / homepage := Some(url("https://github.com/gilcloud/fs2-sink")) +ThisBuild / homepage := Some(url("https://github.com/gilcloud/sbt-gitlab")) // Remove all additional repository other than Maven Central from POM ThisBuild / pomIncludeRepository := { _ => false } ThisBuild / publishTo := sonatypePublishToBundle.value ThisBuild / publishMavenStyle := true -