Add maven-gpg-plugin to parent POM file
---------------------------------------

                 Key: HAMA-514
                 URL: https://issues.apache.org/jira/browse/HAMA-514
             Project: Hama
          Issue Type: Improvement
          Components: build 
    Affects Versions: 0.4.0
            Reporter: Edward J. Yoon
            Assignee: Edward J. Yoon
             Fix For: 0.5.0


I noticed that 'maven-gpg-plugin' is required to deploy signed artifacts to 
repository. We need to add this plugin as below.

{code}
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to