initial commit

This commit is contained in:
devapp
2021-11-29 11:56:30 +01:00
parent 016e45a01c
commit 5b67068faa
4285 changed files with 927085 additions and 2 deletions

View 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