Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 929 Bytes

RELEASING.md

File metadata and controls

35 lines (24 loc) · 929 Bytes

Releasing

Publishing to Maven Local

In order to publish a release with its version ending with -SNAPSHOT to your local Maven repository:

./gradlew snapshot publishToMavenLocal

Publishing to Maven Central

In order to publish a final release:

Print latest versions

curl -LfsS \
  'https://search.maven.org/solrsearch/select?q=g:com.bkahlert.kommons&rows=20&wt=json' | {
  jq -s \
  '.[0].response.docs[].latestVersion'
}