You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2018/08/30 20:14:51 UTC

[1/3] commons-release-plugin git commit: document distServer plugin config parameter

Repository: commons-release-plugin
Updated Branches:
  refs/heads/master 462dffabe -> db9fd9fc4


document distServer plugin config parameter


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/7263fecc
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/7263fecc
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/7263fecc

Branch: refs/heads/master
Commit: 7263feccc0d7c5127e116f1654146bb92efa6d45
Parents: 462dffa
Author: Matt Benson <mb...@apache.org>
Authored: Thu Aug 30 15:05:01 2018 -0500
Committer: Matt Benson <mb...@apache.org>
Committed: Thu Aug 30 15:05:01 2018 -0500

----------------------------------------------------------------------
 src/site/xdoc/index.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/7263fecc/src/site/xdoc/index.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index b440602..059adcd 100755
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -124,12 +124,17 @@ mvn -Duser.name=<yourApacheId> [-Duser.password=<yourApacheIdsPassword] [-Dcommo
 ]]></source>
                     </li>
                 </ol>
+            To avoid specifying distribution credentials at the command
+            line, consider using the <code>distServer</code> plugin configuration parameter (property <code>commons.distServer</code>)
+            to specify a server definition in Maven <code>settings.xml</code> which defines your (encrypted, right?) authentication info.
+            </p>
+
+            <p>
             If the component is new, then, before running this maven command, you would want to create
             the requisite subversion directory <code>https://dist.apache.org/repos/dist/dev/commons/foo</code>. Notice,
             that the way to perform a dry run of the release you need to include
             <code>-Dcommons.release.dryRun=true -Ptest-deploy</code>.
             </p>
         </section>
-
     </body>
 </document>


[2/3] commons-release-plugin git commit: add Maven plugin report and centralize (version) configuration of said plugin to pluginManagement section of pom

Posted by mb...@apache.org.
add Maven plugin report and centralize (version) configuration of said plugin to pluginManagement section of pom


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/555d0899
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/555d0899
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/555d0899

Branch: refs/heads/master
Commit: 555d089943e68ce2a7e4def6453f6ac084ef5728
Parents: 7263fec
Author: Matt Benson <mb...@apache.org>
Authored: Thu Aug 30 15:10:32 2018 -0500
Committer: Matt Benson <mb...@apache.org>
Committed: Thu Aug 30 15:10:32 2018 -0500

----------------------------------------------------------------------
 pom.xml           | 12 +++++++++++-
 src/site/site.xml |  1 +
 2 files changed, 12 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/555d0899/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0082c57..5c4685b 100755
--- a/pom.xml
+++ b/pom.xml
@@ -117,6 +117,7 @@
     <commons.release.isDistModule>true</commons.release.isDistModule>
     <commons.releaseManagerName>Rob Tompkins</commons.releaseManagerName>
     <commons.releaseManagerKey>B6E73D84EA4FCC47166087253FAAD2CD5ECBB314</commons.releaseManagerKey>
+    <maven.plugin.version>3.5.1</maven.plugin.version>
   </properties>
 
   <dependencies>
@@ -257,13 +258,18 @@
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>${maven.plugin.version}</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
-        <version>3.5.1</version>
         <!-- Add the Ant plugin tools to the plugin -->
         <dependencies>
           <dependency>
@@ -463,6 +469,10 @@
   </build>
   <reporting>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+      </plugin>
       <!-- exclude surefire report -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/555d0899/src/site/site.xml
----------------------------------------------------------------------
diff --git a/src/site/site.xml b/src/site/site.xml
index e9561ba..5bbd25a 100755
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -26,6 +26,7 @@
             <item name="Overview"                 href="/index.html" />
             <item name="Download"                 href="/download_commons-release-plugin.cgi"/>
             <item name="Release History"          href="/release-history.html"/>
+            <item name="Plugin Documentation"     href="/plugin-info.html" />
             <item name="Javadoc (Latest release)" href="javadocs/api-release/index.html"/>
             <item name="Help"                     href="/development.html">
                 <item name="Issue Tracking"       href="/issue-tracking.html"/>


[3/3] commons-release-plugin git commit: remove javancss plugin, favoring JaCoCo

Posted by mb...@apache.org.
remove javancss plugin, favoring JaCoCo


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/db9fd9fc
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/db9fd9fc
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/db9fd9fc

Branch: refs/heads/master
Commit: db9fd9fc4cb2e383e75f30c9857f1bb57220d0e9
Parents: 555d089
Author: Matt Benson <mb...@apache.org>
Authored: Thu Aug 30 15:14:09 2018 -0500
Committer: Matt Benson <mb...@apache.org>
Committed: Thu Aug 30 15:14:09 2018 -0500

----------------------------------------------------------------------
 pom.xml | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/db9fd9fc/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5c4685b..d4ed948 100755
--- a/pom.xml
+++ b/pom.xml
@@ -609,10 +609,6 @@
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>javancss-maven-plugin</artifactId>
-      </plugin>
-      <plugin>
         <groupId>org.jacoco</groupId>
         <artifactId>jacoco-maven-plugin</artifactId>
         <version>${commons.jacoco.version}</version>