You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Rob Tompkins (JIRA)" <ji...@apache.org> on 2018/01/07 19:40:00 UTC

[jira] [Updated] (COMMONSSITE-97) Documentation for commons-release-plugin

     [ https://issues.apache.org/jira/browse/COMMONSSITE-97?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rob Tompkins updated COMMONSSITE-97:
------------------------------------
    Description: 
We need sufficient documentation on the usage of the commons-release-plugin in the site, and with javadoc. Note, the POC usage followed as:

{code:xml}
<!-- Declaration place matters must be after gpg. -->
<plugin>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-release-plugin</artifactId>
  <version>0.1-SNAPSHOT</version>
  <configuration>
    <distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/text</distSvnStagingUrl>
    <username></username>
    <password></password>
  </configuration>
  <executions>
    <execution>
      <id>detatch-distributions</id>
      <phase>verify</phase>
      <goals>
        <goal>detatch-distributions</goal>
      </goals>
    </execution>
    <execution>
      <id>compress-site</id>
      <phase>site</phase>
      <goals>
        <goal>compress-site</goal>
      </goals>
    </execution>
    <execution>
      <id>stage-distributions</id>
      <phase>deploy</phase>
      <goals>
        <goal>stage-distributions</goal>
      </goals>
    </execution>
  </executions>
</plugin> 
{code}

  was:Prepare a git repository for the commons-release-plugin, and include code from https://github.com/chtompki/commons-release-plugin, based on the vote: http://markmail.org/message/f65njnb5wropnq42


> Documentation for commons-release-plugin
> ----------------------------------------
>
>                 Key: COMMONSSITE-97
>                 URL: https://issues.apache.org/jira/browse/COMMONSSITE-97
>             Project: Commons All
>          Issue Type: Improvement
>          Components: Commons Release Plugin
>            Reporter: Rob Tompkins
>            Assignee: Rob Tompkins
>
> We need sufficient documentation on the usage of the commons-release-plugin in the site, and with javadoc. Note, the POC usage followed as:
> {code:xml}
> <!-- Declaration place matters must be after gpg. -->
> <plugin>
>   <groupId>org.apache.commons</groupId>
>   <artifactId>commons-release-plugin</artifactId>
>   <version>0.1-SNAPSHOT</version>
>   <configuration>
>     <distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/text</distSvnStagingUrl>
>     <username></username>
>     <password></password>
>   </configuration>
>   <executions>
>     <execution>
>       <id>detatch-distributions</id>
>       <phase>verify</phase>
>       <goals>
>         <goal>detatch-distributions</goal>
>       </goals>
>     </execution>
>     <execution>
>       <id>compress-site</id>
>       <phase>site</phase>
>       <goals>
>         <goal>compress-site</goal>
>       </goals>
>     </execution>
>     <execution>
>       <id>stage-distributions</id>
>       <phase>deploy</phase>
>       <goals>
>         <goal>stage-distributions</goal>
>       </goals>
>     </execution>
>   </executions>
> </plugin> 
> {code}



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