diff --git a/Version.sbt b/Version.sbt index dfd7e193..77e7f282 100644 --- a/Version.sbt +++ b/Version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.3.4-SNAPSHOT" +version in ThisBuild := "0.3.4" diff --git a/project/Publishing.scala b/project/Publishing.scala index 9adffae6..255688b3 100644 --- a/project/Publishing.scala +++ b/project/Publishing.scala @@ -15,7 +15,7 @@ object Publishing { lazy val publishSettings = Seq( credentials += Credentials(Path.userHome / ".ivy2" / ".sonatype_credentials"), publishTo := { - val nexus = "https://oss.sonatype.org/" + val nexus = "https://s01.oss.sonatype.org/" if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots") else @@ -31,7 +31,14 @@ object Publishing { name = "梦境迷离", email = "dreamylost@outlook.com", url = url("https://dreamylost.cn") - )), + ), + Developer( + id = "IceMimosa", + name = "ChenKai", + email = "chk19940609@gmail.com", + url = url("http://patamon.me") + ) + ), sonatypeProfileName := organization.value, isSnapshot := version.value endsWith "SNAPSHOT", homepage := Some(url("https://bitlap.org")),