Skip to content

Latest commit

 

History

History
62 lines (48 loc) · 2.47 KB

PublishingToMavenCentral.md

File metadata and controls

62 lines (48 loc) · 2.47 KB

Publishing JNA to Maven Central

One Time

  • Create an account in the sonatype jira

  • Get the account enabled for publishing to the net.java.dev.jna groupId (contact an existing uploader for this)

  • Set up your gpg keys as described here. Make sure you distribute your public key.

  • Make sure you have a settings.xml file (in directory: ${user.home}/.m2/). For example (Replace myossrhuser and myossrhpwd with the account credentials):

    <settings>
    ...
        <servers>
        ...
            <server>
                <id>oss.sonatype.org</id>
                <username>myossrhuser</username>
                <password>myossrhpwd</password>
            </server>
        ...
        </servers>
    ...
    <settings>

    The binaries are hosted in the Sonatype OSSRH (OSS Repository Hosting) system, and mirrored from there to maven central.

    See OSSRH Guide for more info.

Publish Snapshot

At any time and in preparation for a release

Before doing a full jna release, we can publish a development SNAPSHOT of the "next" release for people to test. The SNAPSHOT will be published in the staging repository:

https://oss.sonatype.org/content/repositories/snapshots/

see: https://oss.sonatype.org/content/repositories/snapshots/net/java/dev/jna/ for the various jars.

To publish a development SNAPSHOT do the following:

    git checkout -- .
    ant clean
    ant deploy

Note: Unlike stable, unchanging releases, a SNAPSHOT may be re-published at any time (and is typically deleted after a full release is performed).

Publish Release