If I have a project utilizing package(:test_jar) and run "buildr install",
the resulting test jar does not get installed to the local repository.
 Also, if I run "buildr upload" in the same project, the test jar does not
get pushed to the release_to repository.

I can work around the "install" issue with something like:

  install.enhance do
    destination = repositories.local + "/" + GROUP.gsub(".", "/") + "/" +
proj.name.gsub(":", "-") + "/" + VERSION_NUMBER + "/"
    mkdir_p destination
    copy_file(testFileName, destination + File.basename(testFileName))
  end

But I don't currently know a workaround for the "upload" issue.  Does
anyone have any ideas?

Thanks,
Chris

Reply via email to