First commit waiting for Budget Alert

This commit is contained in:
2025-09-04 13:37:35 +01:00
commit 2d681f27f5
4563 changed files with 1061534 additions and 0 deletions

View 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