From 655a64696b6238cd0113ce9cc17e3eb87b1f8d12 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Fri, 14 Feb 2020 06:47:10 -0700 Subject: [PATCH 1/4] Add CHANGELOG.md from wiki --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ca5c5f2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,40 @@ +# Change Log + +### Version 1.5 (Mar 06, 2019) + +- [JENKINS-32619](https://issues.jenkins-ci.org/browse/JENKINS-32619) - + Fix javadoc presentation for java 11 generated reports +- Update the Jenkins core requirement to 2.60,3 + +### Version 1.4 (Jun 17, 2016) + +- [JENKINS-32619](https://issues.jenkins-ci.org/browse/JENKINS-32619) + Compatibility with content security policy enforced as part of a + Jenkins security update. + +### Version 1.3 (Nov 06, 2014) + +No code change from beta 2. + +### Version 1.3-beta-2 (Oct 20, 2014) + +- Fixed error in form validation when used in a context other than a + freestyle project. + +### Version 1.3-beta-1 (Aug 25, 2014) + +- [JENKINS-23713](https://issues.jenkins-ci.org/browse/JENKINS-23713) + Taking advantage of 1.577+ APIs. + +### Version 1.2 (Jul 31, 2014) + +- Fix to serialized form of build action. + +### Version 1.1 (Feb 20, 2013) + +- translations +- label for Plugin Manager + +### Version 1.0 (Sep 19, 2011) + +- First release, split off from the core. From f59ac37b17a7cf81f3dc0f1e0c13789305cc54bf Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Fri, 14 Feb 2020 07:02:28 -0700 Subject: [PATCH 2/4] Use GitHub for docs instead of Wiki --- README.md | 16 ++++++++++++++++ pom.xml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8f45f36 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Jenkins Javadoc Plugin + +[![Build Status](https://ci.jenkins.io/job/Plugins/job/javadoc-plugin/job/master/badge/icon)](https://ci.jenkins.io/job/Plugins/job/javadoc-plugin/job/master/) +[![Contributors](https://img.shields.io/github/contributors/jenkinsci/javadoc-plugin.svg)](https://github.com/jenkinsci/javadoc-plugin/graphs/contributors) +[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/javadoc.svg)](https://plugins.jenkins.io/javadoc) +[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/javadoc.svg?color=blue)](https://plugins.jenkins.io/javadoc) +[![Gitter](https://badges.gitter.im/jenkinsci/jenkins.svg)](https://gitter.im/jenkinsci/jenkins) + +This plugin adds Javadoc support to Jenkins. +This functionality used to be a part of the core, but as of Jenkins 1.431, it was split off into a separate plugin. + +The plugin enables the selection of "Publish Javadoc" as Post-build action, specifying the directory where the Javadoc is to be gathered and if retention is expected for each successful build. + +## Changelog + +See the [CHANGELOG](CHANGELOG.md) for the plugin release history. \ No newline at end of file diff --git a/pom.xml b/pom.xml index 49b4b06..8928619 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ hpi Javadoc Plugin - http://wiki.jenkins-ci.org/display/JENKINS/Javadoc+Plugin + https://github.com/jenkinsci/${project.artifactId}-plugin scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git From 4ec4a73a106bade299f41ddf42c21c86b1e13ec8 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Wed, 19 Feb 2020 16:09:25 -0700 Subject: [PATCH 3/4] Use consistent spelling of changelog Co-Authored-By: YSalimzyanov --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca5c5f2..4e5c19a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Change Log +# Changelog ### Version 1.5 (Mar 06, 2019) From d4155dfae9fee5dfd16dcdca9a9ad5c76df92cf6 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Wed, 19 Feb 2020 16:11:28 -0700 Subject: [PATCH 4/4] Use level 2 heading inside level 1 Consistency with other files and with most style guides --- CHANGELOG.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e5c19a..f633fb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,40 +1,40 @@ # Changelog -### Version 1.5 (Mar 06, 2019) +## Version 1.5 (Mar 06, 2019) - [JENKINS-32619](https://issues.jenkins-ci.org/browse/JENKINS-32619) - Fix javadoc presentation for java 11 generated reports - Update the Jenkins core requirement to 2.60,3 -### Version 1.4 (Jun 17, 2016) +## Version 1.4 (Jun 17, 2016) - [JENKINS-32619](https://issues.jenkins-ci.org/browse/JENKINS-32619) Compatibility with content security policy enforced as part of a Jenkins security update. -### Version 1.3 (Nov 06, 2014) +## Version 1.3 (Nov 06, 2014) No code change from beta 2. -### Version 1.3-beta-2 (Oct 20, 2014) +## Version 1.3-beta-2 (Oct 20, 2014) - Fixed error in form validation when used in a context other than a freestyle project. -### Version 1.3-beta-1 (Aug 25, 2014) +## Version 1.3-beta-1 (Aug 25, 2014) - [JENKINS-23713](https://issues.jenkins-ci.org/browse/JENKINS-23713) Taking advantage of 1.577+ APIs. -### Version 1.2 (Jul 31, 2014) +## Version 1.2 (Jul 31, 2014) - Fix to serialized form of build action. -### Version 1.1 (Feb 20, 2013) +## Version 1.1 (Feb 20, 2013) - translations - label for Plugin Manager -### Version 1.0 (Sep 19, 2011) +## Version 1.0 (Sep 19, 2011) - First release, split off from the core.