This page describes the shell script atlas-compile
, part of the Atlassian Plugin SDK.
atlas-compile [options]
- Compiles the sources of your project. (Runs mvn compile
.) Passes all parameters straight through to Maven.
This shell script is a Maven wrapper script. All parameters are passed straight through to Maven.
The shell script will display some help text if you enter one of the following as the first argument:
For example:
1 2atlas-compile -? atlas-compile -help
Run the following command to see all options provided by mvn compile
:
1 2atlas-mvn compile --help
Refer to the Maven documentation for more information about the mvn compile
command.
Run the following command to compile your source code:
1 2atlas-compile
Run the following command to compile your source code without failing the build, even if there are errors
1 2atlas-compile --fail-never
Rate this page: