werken      2002/06/26 12:13:26

  Modified:    src/java/org/apache/maven/app Maven.java
               src/templates/build/plugins/test plugin.jelly
  Log:
  Forgot to remove some debug.
  
  Revision  Changes    Path
  1.21      +0 -7      jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java
  
  Index: Maven.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- Maven.java        26 Jun 2002 19:09:04 -0000      1.20
  +++ Maven.java        26 Jun 2002 19:13:25 -0000      1.21
  @@ -750,8 +750,6 @@
        */
       void loadPluginProperties(String name) throws IOException
       {
  -        System.err.println( "loadPluginProperties(" + name + ")" );
  -
           Properties props = getPluginProperties(name);
   
           if (props == null)
  @@ -773,12 +771,9 @@
           {
               eachName = (String) propNames.nextElement();
   
  -            System.err.println( name + " ${" + eachName + "}" );
  -
               if (context.getVariable(eachName) == null)
               {
                   propText = props.getProperty(eachName);
  -                System.err.println( "propText: " + propText );
   
                   try
                   {
  @@ -793,8 +788,6 @@
                       {
                           propVal = propText;
                       }
  -                        
  -                    System.err.println( "propVal: " + propVal );
   
                       context.setVariable(eachName,
                                           propVal );
  
  
  
  1.5       +1 -1      
jakarta-turbine-maven/src/templates/build/plugins/test/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/test/plugin.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.jelly      26 Jun 2002 19:09:04 -0000      1.4
  +++ plugin.jelly      26 Jun 2002 19:13:26 -0000      1.5
  @@ -58,7 +58,7 @@
       </junit>
   
       <echo message="fail: ${maven.test.failure}"/>
  -    <j:if test="${maven.test.failure}">
  +    <j:if test="${maven.test.failure}.equals('true')">
         <fail message="There were test failures."/>
       </j:if>
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to