From: Stephen C. <sco...@us...> - 2006-01-09 22:59:20
|
scolebourne 06/01/09 14:59:14 Modified: sourceforge plugin.properties plugin.jelly Log: Fix to ensure plugin stops without password Revision Changes Path 1.6 +1 -1 maven-plugins/sourceforge/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sourceforge/plugin.properties,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- plugin.properties 7 Jan 2006 22:50:50 -0000 1.5 +++ plugin.properties 9 Jan 2006 22:59:13 -0000 1.6 @@ -38,7 +38,7 @@ # or in the file ${user.home}/build.properties/build.properties # maven.sourceforge.username = ${maven.username} -maven.sourceforge.password = XXXX +maven.sourceforge.password = # # Proxy settings (optional), 1.10 +1 -1 maven-plugins/sourceforge/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sourceforge/plugin.jelly,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- plugin.jelly 7 Jan 2006 22:50:50 -0000 1.9 +++ plugin.jelly 9 Jan 2006 22:59:14 -0000 1.10 @@ -67,7 +67,7 @@ <ant:property name="maven.sourceforge.username" value="${maven.username}"/> <maven:user-check user="${maven.sourceforge.username}"/> - <maven:param-check value="${maven.sourceforge.password}" message="Please set the Sourceforge password in the property maven.sourceforge.password" trim="true" /> + <maven:param-check value="${maven.sourceforge.password}" message="Please set the Sourceforge password in the property maven.sourceforge.password" trim="true" fail="true" /> <ant:property name="maven.sourceforge.userEmail" value="${maven.sourceforge.username}@users.sourceforge.net"/> </goal> |