Víctor A. Rodríguez created MGPG-61:
---------------------------------------

             Summary: Missing profile id at usage page
                 Key: MGPG-61
                 URL: https://issues.apache.org/jira/browse/MGPG-61
             Project: Maven GPG Plugin
          Issue Type: Bug
            Reporter: Víctor A. Rodríguez
            Priority: Trivial


At https://maven.apache.org/plugins/maven-gpg-plugin/usage.html bottom is shown 
settings.xml file to discover the passphrase via the keyname. It doesn't work 
because the id property is missing :

{noformat}
    <profiles>
      <profile>
        <activation>
          <activeByDefault>true</activeByDefault>
        </activation>
        [...]
    <profiles>
{noformat}

Should be


{noformat}
    <profiles>
      <profile>
        <id>my_profile_id</id>
        <activation>
          <activeByDefault>true</activeByDefault>
        </activation>
        [...]
    <profiles>
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to