Initialer commit

This commit is contained in:
2026-03-18 22:00:54 +01:00
commit 7adb3acc8d
426 changed files with 8484 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
def wildflyHome = project.hasProperty('wildflyHome') ? project.getProperty('wildflyHome') : (System.getenv('JBOSS_HOME') != null ? System.getenv('JBOSS_HOME').replaceAll('\\\\', '/') : '')
ext {
println wildflyHome
}
configurations {
deploy
}
dependencies {
deploy project(path: ":aufgaben-service", configuration: 'archives')
deploy project(path: ":mail-service", configuration: 'archives')
deploy project(path: ":registration-service", configuration: 'archives')
deploy project(path: ":session-service", configuration: 'archives')
deploy project(path: ":user-service", configuration: 'archives')
}
task clearDeploymentFolder {
doFirst {
delete wildflyHome + '/standalone/deployments/'
}
}
task deploy(dependsOn:['clearDeploymentFolder'], type: Copy) {
from configurations.deploy
into wildflyHome + '/standalone/deployments'
}