Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Akubra's root pom.xml already has the correct staging and snapshot repositories listed in the distributionManagement section.  In order to deploy, you will need to add your Sonatype OSS username and password to your local ~/.m2/settings.xml file:

Code Block
<settings>
&nbsp;  <servers>
&nbsp;&nbsp;&nbsp; <server>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    <server>
      <id>sonatype-nexus-snapshots</id>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      <username>YourUsername</username>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      <password>YourPassword</password>

&nbsp;&nbsp;&nbsp;    </server>
&nbsp;<server>
&nbsp;&nbsp;    <server>
      <id>sonatype-nexus-staging</id>
&nbsp;&nbsp;      <username>YourUsername</username>
&nbsp;&nbsp;      <password>YourPassword</password>

&nbsp;&nbsp;&nbsp;    </server>
&nbsp;  </servers>

</settings>