Last updated Mar 8, 2024

Install the Atlassian SDK on a Linux or Mac system

Not using Linux / Mac?

Windows users should see Install the Atlassian SDK on a Windows system

On this page, you install the SDK on your Linux or Mac system. You also configure your operating system to recognize the SDK commands in your environment.

Step 1: Configure your environment

This assumes that you have the Java SE Development Kit (JDK) 8 or AdoptOpenJDK 8 installed as described in Before you begin

Verify that you have JAVA_HOME set in your system by running echo $JAVA_HOME from the terminal

1
2
host:~ test$ echo $JAVA_HOME
/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home

If the output resembles the above skip ahead to Step 2: Download and Install the SDK

The JAVA_HOME environment variable specifies the location of the JDK on your system. On Mac OS X, if you accepted the defaults when you installed the JDK, this is /Library/Java/JavaVirtualMachines/1.8.0.jdk/Contents/Home. On Linux, it may be /usr/local/jdk, or a similar location. You should add the JDK's bin directory to your PATH environment variable as well. This ensures your environment is configured and can locate the javac command.

To set your PATH and JAVA_HOME variables:

  1. Edit the .bashrc file in your home directory using your favourite editor (we use vi in this example).
1
2
host:~ test$ vi ~/.bash_profile
  1. Add the following lines at the end of the file:
1
2
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0.0_91.jdk/Contents/Home
export JAVA_HOME
export PATH=$PATH:$JAVA_HOME/bin

The path in Line 1 will be the path for the JDK on your system.

For Mac OS X this is usually /Library/Java/JavaVirtualMachines/1.8.x.jdk. On Linux it may be /usr/local/jdk or similar.

You can choose to setup your machine to quickly change between different java versions by following the instructions here

  1. Save and close the file.
  2. Enter the following at the command line to pick up your changes:
1
2
host:~ test$ source ~/.bash_profile
  1. Verify you are now seeing the correct result when you enter the command javac -version in terminal
1
2
host:~ test$ javac -version
javac 1.8.0_91

Step 2: Download and install the SDK

There are native installers for a number of operating systems available, as well as a TGZ (GZipped tar file) which can be used for manual installation.

Select the installation instructions that best suit you

Mac OSX

PKG File

  1. Download the PKG file.
  2. Double click the PKG file to launch the installer.
  3. Follow the prompts to complete the installation.
  4. Next: Verify that you have set up the SDK correctly

Homebrew

  1. Open a Terminal window and add the Atlassian "Tap" to your Brew using the command:
1
2
brew tap atlassian/tap
  1. Then install the SDK using the atlassian/tap command:
1
2
brew install atlassian/tap/atlassian-plugin-sdk
  1. Next: Verify that you have set up the SDK correctly

Debian, Ubuntu Linux

On a Debian-based Linux system like Ubuntu, you can install the SDK using apt-get or aptitude:

  1. First, set up the Atlassian SDK repositories:
1
2
sudo sh -c 'echo "deb https://packages.atlassian.com/debian/atlassian-sdk-deb/ stable contrib" >>/etc/apt/sources.list'
  1. Download the public key using curl or wget:
1
2
wget https://packages.atlassian.com/api/gpg/key/public
  1. Add the public key to apt to verify the package signatures automatically:
1
2
sudo apt-key add public
  1. Then, run the install:
1
2
sudo apt-get update
sudo apt-get install atlassian-plugin-sdk
  1. Next: Verify that you have set up the SDK correctly

Red Hat Enterprise Linux, CentOS, Fedora (RPM)

To install on systems that use the Yum package manager:

  1. Create the repo file in your /etc/yum.repos.d/ folder:
1
2
sudo vi /etc/yum.repos.d/artifactory.repo
  1. Configure the repository details:
1
2
[Artifactory]
name=Artifactory
baseurl=https://packages.atlassian.com/yum/atlassian-sdk-rpm/
enabled=1
gpgcheck=0
  1. Install the SDK:
1
2
sudo yum clean all
sudo yum updateinfo metadata
sudo yum install atlassian-plugin-sdk
  1. As always,Verify that you have set up the SDK correctly.

.tgz File

To install the latest version of SDK, do the following:

  1. Download a TGZ (GZipped tar file) of the SDK
  2. Locate the downloaded SDK file.
  3. Extract the file to your local directory.
1
2
sudo tar -xvzf atlassian-plugin-sdk-4.0.tar.gz -C /opt
  1. Rename the extracted folder to  atlassian-plugin-sdk .
1
2
sudo mv /opt/atlassian-plugin-sdk-4.0 /opt/atlassian-plugin-sdk

If you are comfortable working with symbolic links, you can set up a symbolic link instead of renaming the directory.

  1. Next: Verify that you have set up the SDK correctly

Step 3: Verify that you have set up the SDK correctly

Open a terminal window and run the following command:

1
2
atlas-version

You should see something similar to:

1
2
ATLAS Version:    6.2.9
ATLAS Home:       /usr/local/Cellar/atlassian-plugin-sdk/6.2.4/libexec
ATLAS Scripts:    /usr/local/Cellar/atlassian-plugin-sdk/6.2.4/libexec/bin
ATLAS Maven Home: /usr/local/Cellar/atlassian-plugin-sdk/6.2.4/libexec/apache-maven-3.2.1
AMPS Version:     6.2.6
--------
Executing: /usr/local/Cellar/atlassian-plugin-sdk/6.2.4/libexec/apache-maven-3.2.1/bin/mvn --version -gs /usr/local/Cellar/atlassian-plugin-sdk/6.2.4/libexec/apache-maven-3.2.1/conf/settings.xml
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256M; support was removed in 8.0
Apache Maven 3.2.1 (ea8b2b07643dbb1b84b6d16e1f08391b666bc1e9; 2014-02-15T04:37:52+10:00)
Maven home: /usr/local/Cellar/atlassian-plugin-sdk/6.2.4/libexec/apache-maven-3.2.1
Java version: 1.8.0_45, vendor: Oracle Corporation
Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.11.6", arch: "x86_64", family: "mac"

Look for Maven home and note that you are running the version of Maven that is installed with the SDK.

Next step

You now have a local development environment configured for the Atlassian SDK and you're ready to build your first plugin!

Additional Resources

Need help? Request support at Developer Technical Support Portal

Rate this page: