You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by "Ittay Dror (JIRA)" <ji...@apache.org> on 2009/07/19 12:17:15 UTC

[jira] Created: (BUILDR-298) artifact symbols don't work for sub namespace in parent

artifact symbols don't work for sub namespace  in parent
--------------------------------------------------------

                 Key: BUILDR-298
                 URL: https://issues.apache.org/jira/browse/BUILDR-298
             Project: Buildr
          Issue Type: Bug
          Components: Packaging
    Affects Versions: 1.3.4
            Reporter: Ittay Dror


ittayd/tmp > buildr
(in /tmp, development)
Building foo
Buildr aborted!
No artifact found by name :foo_bar in namespace foo:bar
/tmp/buildfile:12
(See full trace by running task with --trace)
ittayd/tmp > cat buildfile 
define 'foo' do
  project.group = 'foo'
  project.version = '1'
 
  artifact_ns do |ns|
    ns.ns(:foo) do |ns|
      ns.bar = 'foo:bar:jar:1'
    end
  end

  define 'bar' do
    compile.with :foo_bar
  end
end


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.