Loading...
Loading...
Use when asked to do a full build, complete build, rebuild, or build everything in a Quarkus project. Runs the full Quarkus build with optimized flags via a subagent to keep the main conversation responsive.
npx skill4agent add quarkusio/quarkusdev-skills quarkus-full-buildquarkus-module-buildmvn compilemvn testmvn install -Dquickly -Dno-test-modules -Dskip.gradle.build=true -T 16C -Prelocations-Dquickly-Dno-test-modules-Dskip.gradle.build=true-T 16C-PrelocationsRun a full Quarkus build with the following command:
mvn install -Dquickly -Dno-test-modules -Dskip.gradle.build=true -T 16C -Prelocations
Monitor the Maven output and report:
1. Whether the build succeeded or failed
2. If it failed, include the relevant error output (compilation errors, test failures, etc.)
3. Total build time
Do not include the full Maven output unless there are errors.✓ Full Quarkus build completed successfully in 8m 42s
The project is ready for testing or deployment.✗ Full Quarkus build failed during compilation
Error in extensions/quarkus-graphql/runtime:
[ERROR] /path/to/GraphQLService.java:[45,23] cannot find symbol
symbol: method getSchema()
location: variable config of type GraphQLConfig
The GraphQLService class is calling a method that doesn't exist in GraphQLConfig.| Flag | Purpose | When to Use |
|---|---|---|
| Skip tests and checks | Fast feedback during development |
| Skip test execution only | When tests are slow but you want other checks |
| Single-threaded | Debugging build order issues |
| Parallel (16 threads/core) | Fast builds on powerful machines |
| Also make dependencies | Building a module with its dependencies |
| Build specific module | Testing changes in one module |
export MAVEN_OPTS="-Xmx4g -XX:MaxMetaspaceSize=1g"
mvn install -Dquickly ...mvn clean install -Dquickly ...mvn dependency:purge-local-repository
mvn install -Dquickly ...