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

17
localdeploy/.project Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>localdeploy</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures>
</projectDescription>

View File

@@ -0,0 +1,2 @@
connection.project.dir=..
eclipse.preferences.version=1

1
localdeploy/build.gradle Normal file
View File

@@ -0,0 +1 @@
apply from: "localdeploy.gradle"

View File

@@ -0,0 +1 @@
call gradlew localdeploy:deploy

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'
}

Binary file not shown.

Binary file not shown.

Binary file not shown.