arconia build
The arconia build
command builds your Spring Boot application. It delegates to your build tool’s (Maven/Gradle) build tasks to compile, test, and package your application as a JAR artifact or native executable.
Options
The following options are available:
Option | Default | Description |
---|---|---|
|
|
Perform a clean build. |
|
|
Skip tests during the build. |
|
|
Perform a native build using GraalVM Native Image. |
|
|
Include debug output. |
|
|
Include more verbose output about the execution. |
|
|
Include more details about errors. |
|
Additional build parameters passed directly to the build tool. |
|
|
Display help information for the command. |
Build Tool Integration
The build
command automatically detects whether your project uses Maven or Gradle and runs the appropriate build task:
Build Tool | Command |
---|---|
Gradle |
For Java builds:
For native builds:
|
Maven |
For Java builds:
For native builds:
|
Any additional parameters specified with --params
are passed through to the respective build tool command.