apply plugin: "com.axelor.app-module" apply from: "../version.gradle" apply { version = openSuiteVersion } axelor { title "Axelor Project" description "Axelor Project Module" } dependencies { compile project(":modules:axelor-base") } task copyWebapp(type: Copy) { destinationDir = file(rootProject.buildDir) into("webapp/project") { from "src/main/webapp" } } rootProject.tasks.war.dependsOn copyWebapp