Skip to content

Instantly share code, notes, and snippets.

@KiyonoKara
KiyonoKara / Installing Scala Packages.md
Last active September 9, 2024 17:22
A guide for installing Scala packages from GitHub's Apache Maven registry.
@davideicardi
davideicardi / README.md
Created September 12, 2020 21:46
Publish Maven library to Github packages with SBT and github actions

Publish

Add the following configuration to your build.sbt:

  // publish to github packages settings
  publishTo := Some("GitHub <GITHUB_OWNER> Apache Maven Packages" at "https://maven.pkg.github.com/<GITHUB_OWNER>/<GITHUB_PROJECT>"),
  publishMavenStyle := true,
  credentials += Credentials(
    "GitHub Package Registry",