Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,9 @@ deployment:
owner: verygoodsecurity
commands:
- mvn deploy -DskipTests=true
release:
tag: /.*/
commands:
- mvn jgitflow:release-start
- mvn jgitflow:release-finish
- git push versioning-test
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,25 @@
</configuration>
</plugin>

<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<enableSshAgent>true</enableSshAgent>
<autoVersionSubmodules>true</autoVersionSubmodules>
<allowUntracked>true</allowUntracked>
<noDeploy>true</noDeploy>

<flowInitContext>
<developBranchName>versioning-test</developBranchName>
<masterBranchName>versioning-test</masterBranchName>
<versionTagPrefix/>
<releaseBranchPrefix>release-</releaseBranchPrefix>
</flowInitContext>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down