Based on doc <http://buildr.apache.org/projects.html#dir_structure>, the
directory structure is
killer-app/
__buildfile
__la-web/
__teh-api/
__teh-impl/
where buildfile is:
define 'killer-app', :version=>"1.0.0" do
define 'teh-api', :version=>"1.0.0" do end
define 'teh-impl', :version=>"1.0.0" do end
define 'la-web', :version=>"1.0.0" do
compile.with projects('teh-api', 'teh-impl')
eclipse.natures 'org.eclipse.jdt.core.javanature'
eclipse.builders 'org.eclipse.jdt.core.javabuilder'
eclipse.classpath_containers
'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6'
end
end
How would the buildfile change, if I moved buildfile to la-web?
Regards,
Nikos