Databases Reference
In-Depth Information
Running a standalone application
If you want to quickly test a new version of an application, you can use the
standalone command to start that application. You can run this command from
anywhere, as there is no plugin required:
atlas-run-standalone--product confluence --version 5.0.1
The help command
There are more commands available, but these are the most used. If you are ever in
doubt how a command is used and which are available, run the following command:
atlas-help
Maven
When you are building a plugin, you will be using Maven as an underlying
library dependency management and build tool. Maven is already bundled with
the Atlassian Plugin SDK, so there is no need to install it on your machine. Even if
you already have a Maven version installed, you should use the bundled version,
as the SDK requires a specific Maven version.
The Atlassian SDK Maven comes with configured settings so that building an
Atlassian plugin will be as easy as possible. Using Maven and building your plugin
does require an active Internet connection, as Maven will resolve and download all
dependencies needed during the build process.
If you are behind a company proxy, make sure to configure Maven accordingly:
1. Open %USERPROFILE%/.m2/settings.xml in a text editor. If the file doesn't
exist, you can create it.
2. Add the following section to your file and make sure to replace the settings
with your proxy settings:
<settings>
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>proxy.somewhere.com</host>
<port>8080</port>
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>
www.google.com|*.somewhere.com
 
Search WWH ::




Custom Search