Add publishing config

This commit is contained in:
Alexander Gehrke 2022-05-23 23:54:07 +02:00
parent 18c0f6ea7a
commit a6f22e0a08

View file

@ -6,16 +6,20 @@ object copret extends ScalaModule with PublishModule {
override def ammoniteVersion = "2.5.3" override def ammoniteVersion = "2.5.3"
def publishVersion = "0.0.1" def publishVersion = "0.0.1-SNAPSHOT"
def pomSettings = PomSettings( def pomSettings = PomSettings(
description = "Use ammonite scripts for command line presentations", description = "Use ammonite scripts for command line presentations",
organization = "de.qwertyuiop", organization = "de.qwertyuiop",
versionControl = VersionControl.github("crater2150", "copret"), versionControl = VersionControl(
browsableRepository = Some("https://git.qwertyuiop.de/crater2150/copret"),
connection = Some(VersionControlConnection.gitHttps("git.qwertyuiop.de", "crater2150/copret.git")),
developerConnection = Some(VersionControlConnection.gitSsh(
"qwertyuiop.de", "crater2150/copret.git", username = Some("git")
)),
),
url = "https://qwertyuiop.de/copret/", url = "https://qwertyuiop.de/copret/",
licenses = Seq(License.MIT), licenses = Seq(License.MIT),
developers = Seq( developers = Seq(Developer("crater2150", "Alexander Gehrke", "https://git.qwertyuiop.de/crater2150"))
Developer("crater2150", "Alexander Gehrke", "https://github.com/crater2150")
)
) )
def ivyDeps = Agg( def ivyDeps = Agg(