This is an automated email from the ASF dual-hosted git repository.
djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git
The following commit(s) were added to refs/heads/master by this push:
new d177a93 Fix GORA-618 gpg and checksum maven plugin issues
new d92d298 Merge pull request #181 from djkevincr/GORA-618
d177a93 is described below
commit d177a938def592312238440be78aca23b1608aff
Author: Kevin Ratnasekera <[email protected]>
AuthorDate: Thu Aug 8 13:08:06 2019 +0530
Fix GORA-618 gpg and checksum maven plugin issues
---
pom.xml | 23 ++---------------------
1 file changed, 2 insertions(+), 21 deletions(-)
diff --git a/pom.xml b/pom.xml
index 220a4cc..dff5e78 100644
--- a/pom.xml
+++ b/pom.xml
@@ -719,20 +719,6 @@
</executions>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>${maven-gpg-plugin.version}</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>${checksum-maven-plugin.version}</version>
@@ -746,19 +732,14 @@
</executions>
<configuration>
<algorithms>
- <algorithm>MD5</algorithm>
- <algorithm>SHA-1</algorithm>
<algorithm>SHA-512</algorithm>
</algorithms>
- <csvSummary>false</csvSummary>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<includes>
- <include>*.zip</include>
- <include>*.tar.gz</include>
- <include>*.jar</include>
- <include>*.pom</include>
+ <include>apache-gora-${project.version}-src.zip</include>
+
<include>apache-gora-${project.version}-src.tar.gz</include>
</includes>
</fileSet>
</fileSets>