Rate this page:
This page describes the shell script atlas-mvn
, part of the Atlassian Plugin SDK.
atlas-mvn [options]
- Allows you to execute any Maven command using the version of Maven bundled with your Atlassian Plugin SDK. (Runs mvn
.) 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 2
atlas-mvn -?
atlas-mvn -help
Run the following command to compile the Java JUnit test classes:
1
atlas-mvn test-compile
Run the following command to get help on the Maven test-compile
goal:
1
atlas-mvn test-compile --help
Rate this page: