-
Notifications
You must be signed in to change notification settings - Fork 13
/
atlassian-plugin-sdk62.rb
34 lines (26 loc) · 1.19 KB
/
atlassian-plugin-sdk62.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'formula'
class AtlassianPluginSdk62 < Formula
homepage 'https://developer.atlassian.com/display/DOCS/Atlassian+Plugin+SDK+Documentation'
url 'https://packages.atlassian.com/maven/repository/public/com/atlassian/amps/atlassian-plugin-sdk/6.2.14/atlassian-plugin-sdk-6.2.14.tar.gz'
sha256 '4c9e33d67106abc609807995e8909a3d46e5140ebc34104649b24ebdece0a474'
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
# Install jars in libexec to avoid conflicts
libexec.install Dir['*']
# Symlink binaries
bin.install_symlink Dir["#{libexec}/bin/*"]
end
def caveats
<<~EOS
*** Please note we have dropped support for Maven 2.x and Maven 3.0.x ***
Release notes can be found at https://developer.atlassian.com/docs/amps-sdk-release-notes/amps-sdk-6-x-and-up-release-notes
Thanks for installing the Atlassian Plugin SDK. For more information,
visit https://developer.atlassian.com.
To create a plugin skeleton using atlas-create-APPLICATION-plugin, e.g.:
atlas-create-jira-plugin or atlas-create-confluence-plugin
To run your plugin's host application with the plugin skeleton installed:
atlas-run
EOS
end
end