Skip to content

Commit 2ab4dfd

Browse files
chore: versioning 1.0.0
1 parent 08cc321 commit 2ab4dfd

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.jar
88
*.war
99
*.ear
10+
pom.xml.versionsBackup
1011

1112
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1213
hs_err_pid*

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,26 @@
271271
<target>9</target>
272272
</configuration>
273273
</plugin>
274-
274+
<plugin>
275+
<groupId>external.atlassian.jgitflow</groupId>
276+
<artifactId>jgitflow-maven-plugin</artifactId>
277+
<version>1.0-m5.1</version>
278+
<configuration>
279+
<flowInitContext>
280+
<masterBranchName>master</masterBranchName>
281+
<developBranchName>development</developBranchName>
282+
<featureBranchPrefix>feature/-</featureBranchPrefix>
283+
<releaseBranchPrefix>release-</releaseBranchPrefix>
284+
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
285+
<versionTagPrefix>version-</versionTagPrefix>
286+
</flowInitContext>
287+
<username>USERNAME_FOR_A_GIT_USER</username>
288+
<password>PASSWORD_FOR_A_GIT_USER</password>
289+
<noDeploy>true</noDeploy>
290+
<squash>true</squash>
291+
<scmCommentPrefix>[RELEASE] </scmCommentPrefix>
292+
</configuration>
293+
</plugin
275294
<plugin>
276295
<groupId>org.jacoco</groupId>
277296
<artifactId>jacoco-maven-plugin</artifactId>

0 commit comments

Comments
 (0)