You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/05/02 05:22:02 UTC

svn commit: r1332912 - in /buildr/trunk: CHANGELOG lib/buildr/ide/eclipse.rb

Author: donaldp
Date: Wed May  2 03:22:02 2012
New Revision: 1332912

URL: http://svn.apache.org/viewvc?rev=1332912&view=rev
Log:
BUILDR-635 JRE container entry to be declared before user sources and dependencies 

Submitted By: Dani Perez

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/ide/eclipse.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=1332912&r1=1332911&r2=1332912&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Wed May  2 03:22:02 2012
@@ -1,5 +1,6 @@
 1.4.7 (Pending)
 * Change: BUILDR-637 Update rubyzip version to 0.9.8 (Russell Teabeault)
+* Fixed:  BUILDR-635 JRE container entry to be declared before user sources and dependencies (Dani Perez)
 * Change: BUILDR-639 Stop requiring pygmentize to run "rake -T" (Russell Teabeault)
 * Added:  Enhance the IDEA extension to support the addition of several explicit facets such as
           ejb, jruby, jpa, web and gwt.

Modified: buildr/trunk/lib/buildr/ide/eclipse.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/ide/eclipse.rb?rev=1332912&r1=1332911&r2=1332912&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/ide/eclipse.rb (original)
+++ buildr/trunk/lib/buildr/ide/eclipse.rb Wed May  2 03:22:02 2012
@@ -250,16 +250,16 @@ module Buildr
                     classpathentry.src project.test.resources
                   end
 
+                  project.eclipse.classpath_containers.each { |container|
+                    classpathentry.con container
+                  }
+
                   # Classpath elements from other projects
                   classpathentry.src_projects project_libs
 
                   classpathentry.output project.compile.target if project.compile.target
                   classpathentry.lib libs
                   classpathentry.var vars
-
-                  project.eclipse.classpath_containers.each { |container|
-                    classpathentry.con container
-                  }
                 end
               end
             end