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 2009/12/08 02:11:05 UTC

svn commit: r888214 - /buildr/trunk/lib/buildr/packaging/artifact_namespace.rb

Author: boisvert
Date: Tue Dec  8 01:11:05 2009
New Revision: 888214

URL: http://svn.apache.org/viewvc?rev=888214&view=rev
Log:
Fix ArtifactNamespace documentation

Modified:
    buildr/trunk/lib/buildr/packaging/artifact_namespace.rb

Modified: buildr/trunk/lib/buildr/packaging/artifact_namespace.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/packaging/artifact_namespace.rb?rev=888214&r1=888213&r2=888214&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/packaging/artifact_namespace.rb (original)
+++ buildr/trunk/lib/buildr/packaging/artifact_namespace.rb Tue Dec  8 01:11:05 2009
@@ -235,7 +235,7 @@
       #         groovy:     org.codehaus.groovy:groovy:jar:1.5.4
       #         logging:    # define a named group
       #           - log4j:log4j:jar:1.2.15
-      #           - commons-logging:commons-logging:1.1.1
+      #           - commons-logging:commons-logging:jar:1.1.1
       #       
       #       # open Buildr::XMLBeans namespace
       #       Buildr::XMLBeans:
@@ -246,7 +246,7 @@
       #         spring:  org.springframework:spring:jar:1.0
       #
       #   -- buildfile --
-      #   ArtifactNamespace.load(Buildr.profile['artifacts'])
+      #   ArtifactNamespace.load(Buildr.settings.profile['artifacts'])
       def load(namespaces = {})
         namespaces.each_pair { |name, uses| instance(name).use(uses) }
       end