You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2007/03/22 19:19:31 UTC

svn commit: r521394 - in /incubator/ode/trunk: .rake Rakefile

Author: mriou
Date: Thu Mar 22 11:19:30 2007
New Revision: 521394

URL: http://svn.apache.org/viewvc?view=rev&rev=521394
Log:
Updated the remote repos to be an array (latest buildr update), added the .rake for non classic stuff.

Added:
    incubator/ode/trunk/.rake
Modified:
    incubator/ode/trunk/Rakefile

Added: incubator/ode/trunk/.rake
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/.rake?view=auto&rev=521394
==============================================================================
--- incubator/ode/trunk/.rake (added)
+++ incubator/ode/trunk/.rake Thu Mar 22 11:19:30 2007
@@ -0,0 +1 @@
+# Here goes all tasks that don't quite fit in the standard Rakefile

Modified: incubator/ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/Rakefile?view=diff&rev=521394&r1=521393&r2=521394
==============================================================================
--- incubator/ode/trunk/Rakefile (original)
+++ incubator/ode/trunk/Rakefile Thu Mar 22 11:19:30 2007
@@ -1,6 +1,8 @@
 require "buildr/lib/buildr.rb"
 require "open3"
 
+import ".rake"
+
 # Keep this structure to allow the build system to update version numbers.
 VERSION_NUMBER = "2.0-SNAPSHOT"
 NEXT_VERSION = "2.1"
@@ -65,13 +67,12 @@
 XMLBEANS            = "xmlbeans:xbean:jar:2.2.0"
 
 
-repositories.remote[:central] = "http://pxe.intalio.org/public/maven2"
-repositories.remote[:apache_incubator]="http://people.apache.org/repo/m2-incubating-repository"
-repositories.remote[:maven_central]="http://repo1.maven.org/maven2"
+repositories.remote = ["http://pxe.intalio.org/public/maven2",
+  "http://people.apache.org/repo/m2-incubating-repository",
+  "http://repo1.maven.org/maven2"]
 repositories.deploy_to[:url] ||= "sftp://ode.intalio.org/var/www/public/maven2"
 
 define "ode", :group=>"org.apache.ode", :version=>VERSION_NUMBER do
-
 
   compile.options.source = "1.5"
   compile.options.target = "1.5"