Fix dev launch scripts

This commit is contained in:
Claude Brisson
2024-03-01 10:06:46 +01:00
parent 437ab91650
commit b0b6fe0cf7
2 changed files with 4 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
#!/bin/bash
mvn -DskipTests=true install # needed for pairgoth-common
trap 'kill $CSSWATCH; exit' INT
( cd view-webapp; ./csswatch.sh ) &
CSSWATCH=$!

View File

@@ -1,4 +1,6 @@
#!/bin/bash
mvn -DskipTests=true install # needed for pairgoth-common
export MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5005"
mvn -DskipTests=true --projects api-webapp package jetty:run -Dpairgoth.mode=server