Author: jkuhnert
Date: Tue Nov 28 19:02:23 2006
New Revision: 480357

URL: http://svn.apache.org/viewvc?view=rev&rev=480357
Log:
Fixed assertEquals for output buffer.
Added jar sources for published jars.

Modified:
    tapestry/tapestry-test/trunk/pom.xml
    
tapestry/tapestry-test/trunk/src/java/org/apache/tapestry/BaseComponentTestCase.java

Modified: tapestry/tapestry-test/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry-test/trunk/pom.xml?view=diff&rev=480357&r1=480356&r2=480357
==============================================================================
--- tapestry/tapestry-test/trunk/pom.xml (original)
+++ tapestry/tapestry-test/trunk/pom.xml Tue Nov 28 19:02:23 2006
@@ -149,7 +149,7 @@
         <dependency>
             <groupId>ognl</groupId>
             <artifactId>ognl</artifactId>
-            <version>2.6.7</version>
+            <version>2.6.9</version>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
@@ -159,7 +159,7 @@
         <dependency>
             <groupId>commons-fileupload</groupId>
             <artifactId>commons-fileupload</artifactId>
-            <version>1.1</version>
+            <version>1.1.1</version>
         </dependency>
         <dependency>
             <groupId>commons-beanutils</groupId>
@@ -169,7 +169,7 @@
         <dependency>
             <groupId>commons-lang</groupId>
             <artifactId>commons-lang</artifactId>
-            <version>2.1</version>
+            <version>2.2</version>
         </dependency>
         <dependency>
             <groupId>com.javaforge.tapestry</groupId>
@@ -215,11 +215,6 @@
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-source-plugin</artifactId>
-                <inherited>true</inherited>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>2.0</version>
                 <inherited>true</inherited>
@@ -233,6 +228,18 @@
                 <artifactId>maven-deploy-plugin</artifactId>
                 <version>2.3-SNAPSHOT</version>
                 <inherited>true</inherited>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <inherited>true</inherited>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>

Modified: 
tapestry/tapestry-test/trunk/src/java/org/apache/tapestry/BaseComponentTestCase.java
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry-test/trunk/src/java/org/apache/tapestry/BaseComponentTestCase.java?view=diff&rev=480357&r1=480356&r2=480357
==============================================================================
--- 
tapestry/tapestry-test/trunk/src/java/org/apache/tapestry/BaseComponentTestCase.java
 (original)
+++ 
tapestry/tapestry-test/trunk/src/java/org/apache/tapestry/BaseComponentTestCase.java
 Tue Nov 28 19:02:23 2006
@@ -90,7 +90,7 @@
     {
         String actual = _charArrayWriter.toString();
 
-        assertEquals(expected, actual);
+        assertEquals(actual, expected);
 
         _charArrayWriter.reset();
     }


Reply via email to