Skip to content

Commit 87e7fc7

Browse files
committed
Fix as adviced by @heuermh, thanks!
1 parent efbf79b commit 87e7fc7

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

biojava-integrationtest/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ mvn verify</description>
7171
<!-- integrationtest module shouldn't create a jar file (it would be empty).
7272
Recipe from https://stackoverflow.com/questions/2188746/what-is-the-best-way-to-avoid-maven-jar
7373
- JD 2018-03-08 -->
74+
<!-- I had to comment this out because the gpg plugin would error on trying to sign the inexistent jar when doing 'mvn release:perform' or 'mvn package gpg:sign',
75+
see https://github.com/biojava/biojava/issues/727 - JD 2018-03-23
76+
-->
77+
<!--
7478
<plugin>
7579
<artifactId>maven-jar-plugin</artifactId>
7680
<executions>
@@ -93,6 +97,16 @@ mvn verify</description>
9397
</execution>
9498
</executions>
9599
</plugin>
100+
-->
101+
<!-- With this 'mvn deploy' should not publish the jar file. See https://github.com/biojava/biojava/issues/727 - JD 2018-03-23 -->
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-deploy-plugin</artifactId>
105+
<version>2.8.2</version>
106+
<configuration>
107+
<skip>true</skip>
108+
</configuration>
109+
</plugin>
96110

97111
</plugins>
98112
</build>

0 commit comments

Comments
 (0)