@@ -15,9 +15,9 @@ Always reference these instructions first and fallback to search or bash command
1515### Building the Project
1616- ** NEVER CANCEL builds - they take time but will complete successfully**
1717- ** CRITICAL** : Set timeout to 20+ minutes for builds, 60+ minutes for tests
18- - Clean compile: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" && ./mvnw clean compile -B --no-transfer-progress -DskipTests ` -- takes ~ 10.5 minutes
19- - Full package: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" && ./mvnw package -B --no-transfer-progress -DskipTests ` -- takes ~ 4 minutes
20- - Install to local repository: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" && ./mvnw install -B --no-transfer-progress -DskipTests ` -- takes ~ 1.5 minutes
18+ - Clean compile: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" && ./mvnw clean compile -B --no-transfer-progress -Dmaven.test.skip=true ` -- takes ~ 10.5 minutes
19+ - Full package: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" && ./mvnw package -B --no-transfer-progress -Dmaven.test.skip=true ` -- takes ~ 4 minutes
20+ - Install to local repository: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" && ./mvnw install -B --no-transfer-progress -Dmaven.test.skip=true ` -- takes ~ 1.5 minutes
2121
2222### Testing
2323- ** NEVER CANCEL test runs - set 60+ minute timeouts**
@@ -101,7 +101,7 @@ Always reference these instructions first and fallback to search or bash command
101101## Development Workflow
1021021 . ** Setup** : Configure Node.js 22.18.0 in PATH: ` export PATH="/tmp/node-v22.18.0-linux-x64/bin:$PATH" `
1031032 . ** Initial Build** : Run ` ./mvnw clean compile ` to verify everything builds (~ 10.5 minutes - be patient)
104- 3 . ** Install Dependencies** : Run ` ./mvnw install -DskipTests ` for sample app dependencies (~ 1.5 minutes)
104+ 3 . ** Install Dependencies** : Run ` ./mvnw install -Dmaven.test.skip=true ` for sample app dependencies (~ 1.5 minutes)
1051054 . ** Make Changes** : Edit code in appropriate modules
1061065 . ** Format Code** : Run ` ./mvnw spring-javaformat:apply ` and UI ` npm run format:fix `
1071076 . ** Test Build** : Run build commands to verify changes don't break anything
@@ -146,4 +146,4 @@ spring-boot-admin/ # Root project (19 modules)
146146├── spring-boot-admin-starter-*/ # Spring Boot auto-configuration
147147├── mvnw # Maven wrapper
148148└── pom.xml # Root Maven configuration
149- ```
149+ ```
0 commit comments