|
From: <rob...@us...> - 2010-06-18 05:23:09
|
Revision: 12
http://netcdftools.svn.sourceforge.net/netcdftools/?rev=12&view=rev
Author: robertbridle
Date: 2010-06-18 05:23:03 +0000 (Fri, 18 Jun 2010)
Log Message:
-----------
ANDSWRON-618 - Add echo debug statements in pom.xml to show the username/password SCM values from settings.xml file being used.
Modified Paths:
--------------
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-06-18 04:52:32 UTC (rev 11)
+++ trunk/pom.xml 2010-06-18 05:23:03 UTC (rev 12)
@@ -224,12 +224,34 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
- <version>1.0</version>
+ <version>1.1</version>
<configuration>
<username>${scm.username}</username>
<password>${scm.password}</password>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+ <phase>deploy</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <echo>Using SCM credentials</echo>
+ <echo>[scm.username] ${scm.username}</echo>
+ <echo>[scm.password] ${scm.password}</echo>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|