Versions Compared

Key

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

...

1. Configure your Apache credentials in your maven settings.xml file (usually in ~/.m2/settings.xml). More information is available in official guide.

Code Block
<settings>
	<servers>
  		<server>
    		<id>apache.releases.https</id>
    			<username>APACHE-ID</username>
    		<password>APACHE-PASSWORD</password>
  		</server>
	</servers>

</settings>

2. Go to release branch (tag that was released)

3. Create, sign and deploy artifacts into staging repository

Code Block
for version in 100 200; do mvn clean deploy -Psign -Dhadoop.profile=$version ; done

...