First commit waiting for Budget Alert
This commit is contained in:
25
modules/axelor-open-suite/axelor-project/build.gradle
Normal file
25
modules/axelor-open-suite/axelor-project/build.gradle
Normal file
@ -0,0 +1,25 @@
|
||||
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
|
||||
Reference in New Issue
Block a user