You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2011/03/17 17:53:36 UTC

svn commit: r1082590 - in /buildr/trunk: CHANGELOG lib/buildr/java/tests.rb

Author: boisvert
Date: Thu Mar 17 16:53:36 2011
New Revision: 1082590

URL: http://svn.apache.org/viewvc?rev=1082590&view=rev
Log:
BUILDR-576 Upgrade to JUnit 4.8.2

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/java/tests.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=1082590&r1=1082589&r2=1082590&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Thu Mar 17 16:53:36 2011
@@ -1,6 +1,7 @@
 1.4.6 (Pending)
-* Fixed: BUILDR-571 Generated IDEA projects include resources multiple times (Peter Royal) 
-* Fixed: BUILDR-573 HTTP upload PUT request with incorrect Content-Type (Mathias Doenitz)
+* Change: BUILDR-576 Upgrade to JUnit 4.8.2
+* Fixed:  BUILDR-571 Generated IDEA projects include resources multiple times (Peter Royal) 
+* Fixed:  BUILDR-573 HTTP upload PUT request with incorrect Content-Type (Mathias Doenitz)
 
 1.4.5 (2011-02-20)
 * Added:  BUILDR-555 Add support for the jaxb binding compiler (Mark Petrovic)

Modified: buildr/trunk/lib/buildr/java/tests.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/tests.rb?rev=1082590&r1=1082589&r2=1082590&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/tests.rb (original)
+++ buildr/trunk/lib/buildr/java/tests.rb Thu Mar 17 16:53:36 2011
@@ -184,7 +184,7 @@ module Buildr
     end
 
     # JUnit version number.
-    VERSION = '4.7'
+    VERSION = '4.8.2'
 
     class << self
       # :call-seq:
@@ -227,7 +227,7 @@ module Buildr
                        :class_annotations => %w{org.junit.runner.RunWith},
                        :method_annotations => %w{org.junit.Test})
       end
-      
+
     end
 
     def run(tests, dependencies) #:nodoc:
@@ -330,10 +330,10 @@ module Buildr
       cmd_args << '-d' << task.report_to.to_s
       # run all tests in the same suite
       cmd_args << '-testclass' << tests
-      
+
       cmd_options = { :properties=>options[:properties], :java_args=>options[:java_args],
         :classpath=>dependencies, :name => "TestNG in #{task.send(:project).name}" }
-      
+
       tmp = nil
       begin
         tmp = Tempfile.open("testNG")