Skip to content

Commit

Permalink
v1.0.0 Release Preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
mershad-manesh committed Apr 11, 2023
1 parent 70dadf2 commit c89d7e2
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 9 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ executors:
orbs:
cloudsmith: cloudsmith/[email protected]
sign-packages: opennms/[email protected]
branch-management: opennms/[email protected]


workflows:
build-deploy:
Expand Down Expand Up @@ -39,6 +41,14 @@ workflows:
- /^v.*/
branches:
ignore: /.*/
#- merge:
# requires:
# - test
# filters:
# branches:
# only:
# - /^release-.*/


jobs:
build:
Expand Down Expand Up @@ -134,3 +144,28 @@ jobs:
gh release upload $tag ~/output/*.kar
fi
merge:
executor: build-executor
environment:
MAVEN_OPTS: -Xmx1024m

steps:
- add_ssh_keys:
fingerprints:
- "27:c8:b4:c2:27:cf:78:ae:5f:1f:3a:ee:d7:bb:e8:ca"

- cached-checkout
- branch-management/merge-branch:
committer_email: "[email protected]"
committer_name: "CI/CD System"
from: release-1.x
to: master

# make sure the build passes after merge
- build

- run:
name: "Push to Main"
command: git push --no-verify origin master:master


2 changes: 1 addition & 1 deletion assembly/kar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>assembly</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>kar</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>velocloud-plugin-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>assembly</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion client/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>velocloud-client</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>velocloud-plugin-parent</artifactId>
<groupId>org.opennms.plugins.velocloud</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion client/v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>velocloud-client</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>velocloud-client-v1</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion client/v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>velocloud-client</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>velocloud-client-v2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion karaf-features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>velocloud-plugin-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>karaf-features</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.opennms.plugins.velocloud</groupId>
<artifactId>velocloud-plugin-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>velocloud-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<lombok.version>1.18.24</lombok.version>
</properties>

<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>

<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit c89d7e2

Please sign in to comment.