Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit d370c9e

Browse files
Configured Gitflow plugin.
1 parent eb45be1 commit d370c9e

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,8 @@
282282
<arg>-feature</arg>
283283
<arg>-dependencyfile</arg>
284284
<arg>${project.build.directory}/.scala_dependencies</arg>
285+
<arg>-Xmax-classfile-name</arg>
286+
<arg>128</arg>
285287
</args>
286288
<jvmArgs>
287289
<jvmArg>-Xms1024m</jvmArg>
@@ -339,7 +341,24 @@
339341
<groupId>com.amashchenko.maven.plugin</groupId>
340342
<artifactId>gitflow-maven-plugin</artifactId>
341343
<version>1.5.0</version>
344+
345+
<configuration>
346+
<installProject>false</installProject>
347+
<verbose>false</verbose>
348+
349+
<gitFlowConfig>
350+
<productionBranch>master</productionBranch>
351+
<developmentBranch>develop</developmentBranch>
352+
<featureBranchPrefix>feature/</featureBranchPrefix>
353+
<releaseBranchPrefix>release/</releaseBranchPrefix>
354+
<hotfixBranchPrefix>hotfix/</hotfixBranchPrefix>
355+
<supportBranchPrefix>support/</supportBranchPrefix>
356+
<versionTagPrefix>v</versionTagPrefix>
357+
<origin>origin</origin>
358+
</gitFlowConfig>
359+
</configuration>
342360
</plugin>
361+
343362
<plugin>
344363
<groupId>org.codehaus.mojo</groupId>
345364
<artifactId>versions-maven-plugin</artifactId>
@@ -700,6 +719,17 @@
700719
</execution>
701720
</executions>
702721
</plugin>
722+
<plugin>
723+
<groupId>org.sonatype.plugins</groupId>
724+
<artifactId>nexus-staging-maven-plugin</artifactId>
725+
<version>1.6.8</version>
726+
<extensions>true</extensions>
727+
<configuration>
728+
<serverId>ossrh</serverId>
729+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
730+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
731+
</configuration>
732+
</plugin>
703733
</plugins>
704734
</build>
705735
</profile>

0 commit comments

Comments
 (0)