diff --git a/Version.sbt b/Version.sbt index dfd7e193a1e92c590d1a7827b5bf3dcfe10d30d8..77e7f2823b90fa3cc3aa05cf98bbcc6028552754 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 9adffae618b8d11114dc27354a30be4d99e44aef..255688b33d724740c558a798212c4fe0b7a5a11d 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")),