From a3220ce33854db6f6f4715736e35b64301a96d3a Mon Sep 17 00:00:00 2001 From: evernat Date: Mon, 3 Jul 2017 00:09:06 +0200 Subject: [PATCH] initial --- .gitignore | 9 +++++ LICENSE | 23 +++++++++++ README.md | 13 +++++++ pom.xml | 71 ++++++++++++++++++++++++++++++++++ src/main/resources/index.jelly | 3 ++ 5 files changed, 119 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 pom.xml create mode 100644 src/main/resources/index.jelly diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8644d1a --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +target +work +.settings +.classpath +.project +*.iml +*.ipr +*.iws +.idea/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fff0e95 --- /dev/null +++ b/LICENSE @@ -0,0 +1,23 @@ + diff --git a/README.md b/README.md new file mode 100644 index 0000000..1cf6edf --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +AWS CloudWatch library +====================== + +Jenkins plugin to provide dependencies needed for [AWS CloudWatch](https://aws.amazon.com/cloudwatch/). + +Used by the [Jenkins monitoring plugin](http://wiki.jenkins-ci.org/display/JENKINS/Monitoring) +when -Djavamelody.cloudwatch-namespace is defined (see [doc](https://wiki.jenkins.io/display/JENKINS/Monitoring#Monitoring-Releasenotes)) + +Author : Emeric Vernat (evernat at free.fr) + +License MIT + +Download in [Releases](releases) diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..b7ef574 --- /dev/null +++ b/pom.xml @@ -0,0 +1,71 @@ + + + 4.0.0 + + org.jenkins-ci.plugins + plugin + 2.26-beta-1 + + + aws-cloudwatch-library + hpi + 1.11.136 + AWS CloudWatch Library + Provides dependencies needed for AWS CloudWatch + https://github.com/javamelody/aws-cloudwatch-library + + + + evernat + evernat@free.fr + Emeric Vernat + + + + + MIT + http://www.opensource.org/licenses/mit-license.php + repo + + + + + com.amazonaws + aws-java-sdk-cloudwatch + ${project.version} + + + + + scm:git:ssh://github.com/javamelody/aws-cloudwatch-library.git + scm:git:ssh://git@github.com/javamelody/aws-cloudwatch-library.git + https://github.com/javamelody/aws-cloudwatch-library + HEAD + + + + + + maven-surefire-plugin + 2.19.1 + + true + + + + + + + + repo.jenkins-ci.org + http://repo.jenkins-ci.org/public/ + + + + + + repo.jenkins-ci.org + http://repo.jenkins-ci.org/public/ + + + diff --git a/src/main/resources/index.jelly b/src/main/resources/index.jelly new file mode 100644 index 0000000..5356494 --- /dev/null +++ b/src/main/resources/index.jelly @@ -0,0 +1,3 @@ +
+ Provides dependencies needed for AWS CloudWatch, used by the Monitoring plugin. +
\ No newline at end of file