diff --git a/build.sc b/build.sc index 0e8a9d1..99d236a 100644 --- a/build.sc +++ b/build.sc @@ -6,16 +6,21 @@ import publish._ object qw extends RootModule with ScalaModule with PublishModule { def scalaVersion = "3.3.0" + + override def artifactName = "qw" + override def sonatypeUri = "https://s01.oss.sonatype.org/service/local" + override def sonatypeSnapshotUri = + "https://s01.oss.sonatype.org/content/repositories/snapshots" def pomSettings = PomSettings( - description = artifactName(), - organization = "io.github.windymelt", - url = "https://github.com/windymelt/qw.scala", - licenses = Seq(License.MIT), - versionControl = VersionControl.github("windymelt", "qw.scala"), - developers = Seq( - Developer("windymelt", "windymelt", "https://github.com/windymelt") - ) + description = artifactName(), + organization = "io.github.windymelt", + url = "https://github.com/windymelt/qw.scala", + licenses = Seq(License.MIT), + versionControl = VersionControl.github("windymelt", "qw.scala"), + developers = Seq( + Developer("windymelt", "windymelt", "https://github.com/windymelt") ) + ) override def publishVersion: T[String] = VcsVersion.vcsState().format() object test extends ScalaTests with TestModule.Munit {