refactoring

This commit is contained in:
2026-04-17 10:04:51 +02:00
parent 2c5feb25f6
commit 32f7cd07d9
20 changed files with 113 additions and 90 deletions

3
bin/build Executable file
View File

@@ -0,0 +1,3 @@
#!/usr/bin/env bash
mvn clean package

8
bin/deploy Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# deploy the server
#
# usage:
# deploy server/target/ejb-uebung-1.0-SNAPSHOT.jar
cp -v "$1" "$WILDFLY_BASE_DIR/deployments/"

6
bin/run Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# usage
# run org.example.demo.uebung1.aufgabe16.Client
(cd client && mvn clean compile && mvn exec:java -Dexec.mainClass="$1")

8
bin/start Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# starts the server
#
# usage:
# start
wildfly-fhs