Parent project, serving as the ancestor POM for all brooklyncentral projects. It sets up a profile that can be used to deploy artifacts to sonatype automatically.
- You need to add this
pom
as parent within you project'spom.xml
:<parent> <groupId>io.brooklyn</groupId> <artifactId>brooklyncentral-parent</artifactId> <version>1.0.2</version> <!-- BROOKLYN_CENTRAL_PARENT_VERSION --> </parent>
- Copy the entire folder
.circleci
and paste it in the root of your project. - Go to https://circleci.com/ and add your project to be built automatically for each commit and pull requests.
master
branch should only contains SNAPSHOT
version. Upon every commit pushed on master
, Circle CI will build, sign
then deploy SNAPSHOT
version to sonatype automatically.
To perform an official release, simply create a branch release/<version>
, update the version number in the code then push
your changes. Circle CI will build, sign then deploy artifacts to sonatype automatically.
You will then need to go to the sonatype UI to manually close and release artifacts.
You can always perform manual releases by running the following command:
mvn clean deploy -DskipTests -DdeployTo=sonatype --settings .circleci/settings.xml
Note that you need to setup the following environment variables:
Environment variable | Value |
---|---|
SONATYPE_USER | Sonatype user |
SONATYPE_PASSWORD | Sonatype password |
GPG_EXECUTABLE | GPG executable, e.g. gpg |
GPG_SECRET_KEY | GPG secret key to use. You can get it be running: `gpg -a --export-secret-keys |
GPG_PASSPHRASE | The passphrase of the |