First commit waiting for Budget Alert
This commit is contained in:
26
modules/axelor-open-suite/axelor-human-resource/build.gradle
Normal file
26
modules/axelor-open-suite/axelor-human-resource/build.gradle
Normal file
@ -0,0 +1,26 @@
|
||||
apply plugin: "com.axelor.app-module"
|
||||
|
||||
apply from: "../version.gradle"
|
||||
|
||||
apply {
|
||||
version = openSuiteVersion
|
||||
}
|
||||
|
||||
axelor {
|
||||
title "Axelor Human Resource"
|
||||
description "Axelor Human Resource Module"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile project(":modules:axelor-project")
|
||||
compile project(":modules:axelor-bank-payment")
|
||||
}
|
||||
|
||||
task copyWebapp(type: Copy) {
|
||||
destinationDir = file(rootProject.buildDir)
|
||||
into("webapp/hr") {
|
||||
from "src/main/webapp"
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.tasks.war.dependsOn copyWebapp
|
||||
Reference in New Issue
Block a user