You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
versioning and deployment to sonatype maven snapshot and release repo
deploy to SNAPSHOT repository
# verify build before deployment (snapshot or release)
./mvnw clean verify -Possrh -DskipTests -o
# deploy to sonatype SNAPSHOT repo (happes implicitly becuase qualifier/SNAPSHOTS are attached in versions)
./mvnw clean deploy -Possrh -DskipTests
deploy to RELEASE repository
# verify build before deployment (snapshot or release)
./mvnw clean verify -Possrh -DskipTests -o
# configure version for RELEASE (MANIFEST and pom) - see https://stackoverflow.com/a/34119136/2918516
./mvnw org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=1.0.9 -o
# deploy to sonatype RELEASE repo
./mvnw clean deploy -Possrh -DskipTests
# start new dev cycle - increase version to new qualifier/SNAPSHOTS
./mvnw org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=1.0.10.qualifier -o
# to be evaluated - see tycho-version-bump-plugin in `pom.xml`
mvn org.eclipse.tycho.extras:tycho-version-bump-plugin:update-product -DnewVersion=1.0.5 -o
mvn org.eclipse.tycho.extras:tycho-version-bump-plugin:update-target -DnewVersion=1.0.5 -o