Updated Atlassian Plugin SDK version to 3.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>master
parent
cd9f49873d
commit
473f4e1032
|
@ -1,9 +1,9 @@
|
||||||
require 'formula'
|
require 'formula'
|
||||||
|
|
||||||
class AtlassianPluginSdk < Formula
|
class AtlassianPluginSdk < Formula
|
||||||
url 'https://maven.atlassian.com/content/repositories/atlassian-public/com/atlassian/amps/atlassian-plugin-sdk/3.4/atlassian-plugin-sdk-3.4.tar.gz'
|
url 'https://maven.atlassian.com/content/repositories/atlassian-public/com/atlassian/amps/atlassian-plugin-sdk/3.6/atlassian-plugin-sdk-3.6.tar.gz'
|
||||||
homepage 'http://confluence.atlassian.com/display/DEVNET/Setting+up+your+Plugin+Development+Environment'
|
homepage 'https://developer.atlassian.com/display/DOCS/Atlassian+Plugin+SDK+Documentation'
|
||||||
md5 '99aaea905da5aa6174f973cdc9c10da9'
|
md5 '8f1493232c90fd55f30bf5e6216bc884'
|
||||||
|
|
||||||
def install
|
def install
|
||||||
# Remove windows files
|
# Remove windows files
|
||||||
|
@ -21,11 +21,16 @@ class AtlassianPluginSdk < Formula
|
||||||
Dir["#{libexec}/bin/*"].each do |f|
|
Dir["#{libexec}/bin/*"].each do |f|
|
||||||
ln_s f, bin+File.basename(f)
|
ln_s f, bin+File.basename(f)
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def caveats; <<-EOS.undent
|
def caveats
|
||||||
Create a plugin skeleton using atlas-create-APPLICATION-plugin, e.g.:
|
<<-EOS.undent
|
||||||
atlas-create-confluence-plugin
|
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
|
||||||
|
|
||||||
To run your plugin's host application with the plugin skeleton installed:
|
To run your plugin's host application with the plugin skeleton installed:
|
||||||
atlas-run
|
atlas-run
|
||||||
|
|
Loading…
Reference in New Issue