# Generated by Buildr 1.3.4, change to your liking
# Version number for this release
VERSION_NUMBER = "1.0.0"
# Group identifier for your projects
GROUP = "hello-dolly"
COPYRIGHT = ""

# Specify Maven 2.0 remote repositories here, like this:
repositories.remote << "http://www.ibiblio.org/maven2/"

desc "The Hello-dolly project"
define "hello-dolly" do

  project.version = VERSION_NUMBER
  project.group = GROUP
  manifest["Implementation-Vendor"] = COPYRIGHT

  define "mod1" do
    compile.with # Add classpath dependencies
    package(:jar)
  end

  define "mod2" do
    compile.with project("mod1")
    package(:jar)
  end

end
