Author: vanto
Date: Wed Dec  8 22:24:06 2010
New Revision: 1043733

URL: http://svn.apache.org/viewvc?rev=1043733&view=rev
Log:
debug stmt removed.

Modified:
    ode/branches/ode-1.3.5.x/Rakefile
    ode/branches/ode-1.3.5.x/tasks/gpg.rake

Modified: ode/branches/ode-1.3.5.x/Rakefile
URL: 
http://svn.apache.org/viewvc/ode/branches/ode-1.3.5.x/Rakefile?rev=1043733&r1=1043732&r2=1043733&view=diff
==============================================================================
--- ode/branches/ode-1.3.5.x/Rakefile (original)
+++ ode/branches/ode-1.3.5.x/Rakefile Wed Dec  8 22:24:06 2010
@@ -39,10 +39,10 @@ VERSION_NUMBER = "1.3.5-SNAPSHOT"
 # Apache Nexus Repositories
 if VERSION_NUMBER =~ /SNAPSHOT/
     # Apache Development Snapshot Repository
-    repositories.release_to[:url] = 
'https://repository.apache.org/content/repositories/snapshots'
+    repositories.release_to[:url] ||= 
'https://repository.apache.org/content/repositories/snapshots'
 else
     # Apache Release Distribution Repository
-    repositories.release_to[:url] = 
'https://repository.apache.org/service/local/staging/deploy/maven2'
+    repositories.release_to[:url] ||= 
'https://repository.apache.org/service/local/staging/deploy/maven2'
 end
 
 BUNDLE_VERSIONS = {

Modified: ode/branches/ode-1.3.5.x/tasks/gpg.rake
URL: 
http://svn.apache.org/viewvc/ode/branches/ode-1.3.5.x/tasks/gpg.rake?rev=1043733&r1=1043732&r2=1043733&view=diff
==============================================================================
--- ode/branches/ode-1.3.5.x/tasks/gpg.rake (original)
+++ ode/branches/ode-1.3.5.x/tasks/gpg.rake Wed Dec  8 22:24:06 2010
@@ -42,7 +42,7 @@ module GPG
   def sign_before_upload(root)
     root.enhance do 
       [root, root.projects].flatten.each { |prj|
-        prj.packages.each { |pkg| sign_and_upload(pkg); puts pkg }
+        prj.packages.each { |pkg| sign_and_upload(pkg) }
         prj.packages.map {|pkg| pkg.pom }.uniq.each { |pom| 
sign_and_upload(pom) }
       }
     end


Reply via email to