-
Notifications
You must be signed in to change notification settings - Fork 13
/
atlassian-plugin-sdk5.rb
34 lines (26 loc) · 1.19 KB
/
atlassian-plugin-sdk5.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 AtlassianPluginSdk5 < 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/5.1.10/atlassian-plugin-sdk-5.1.10.tar.gz'
sha256 '6e877c46766917e769f3012a987d91d1352d417789bea5ec18fdf2a1e543212c'
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 that version 5.x of the SDK is provided only for legacy purposes ***
**** It is recommended that you upgrade to a newer version unless you have a specifc need to use Oracle Java JDK 7 ***
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