Skip to content

Commit 1b963fb

Browse files
committed
Adding release checks
Adding release checks to build. Using newer, updated, version of jgitflow maven plugin to use with Maven.
1 parent 460f2bd commit 1b963fb

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ notifications:
88
matrix:
99
include:
1010
# Quality testing
11+
- jdk: oraclejdk8
12+
env: JACOCO=true RELEASE_CHECKS=true
1113
- jdk: oraclejdk8
1214
env: JACOCO=true COVERALLS=true
1315
- jdk: oraclejdk8

pom.xml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@
164164
<version>3.5.0.1254</version>
165165
</plugin>
166166
<plugin>
167-
<groupId>external.atlassian.jgitflow</groupId>
167+
<groupId>com.manamind.jgitflow</groupId>
168168
<artifactId>jgitflow-maven-plugin</artifactId>
169-
<version>1.0-m5.1</version>
169+
<version>1.0.0</version>
170170
<configuration>
171171
<enableSshAgent>true</enableSshAgent>
172172
<flowInitContext>
@@ -466,6 +466,29 @@
466466
</plugins>
467467
</build>
468468
</profile>
469+
470+
<profile>
471+
<id>release-checks</id>
472+
<activation>
473+
<property>
474+
<name>env.RELEASE_CHECKS</name>
475+
<value>true</value>
476+
</property>
477+
</activation>
478+
<build>
479+
<plugins>
480+
<plugin>
481+
<artifactId>maven-source-plugin</artifactId>
482+
</plugin>
483+
<plugin>
484+
<artifactId>maven-javadoc-plugin</artifactId>
485+
</plugin>
486+
<plugin>
487+
<artifactId>maven-gpg-plugin</artifactId>
488+
</plugin>
489+
</plugins>
490+
</build>
491+
</profile>
469492
</profiles>
470493

471494
</project>

0 commit comments

Comments
 (0)