Author: khmarbaise Date: Fri Feb 12 19:25:09 2016 New Revision: 1730092 URL: http://svn.apache.org/viewvc?rev=1730092&view=rev Log: Using https consistently instead of http.
Modified: maven/site/trunk/content/apt/developers/committer-environment.apt maven/site/trunk/content/apt/developers/committer-settings.apt maven/site/trunk/content/apt/developers/conventions/code.apt maven/site/trunk/content/apt/developers/conventions/git.apt maven/site/trunk/content/apt/developers/conventions/jira.apt maven/site/trunk/content/apt/developers/conventions/svn.apt maven/site/trunk/content/apt/developers/dependency-policies.apt maven/site/trunk/content/apt/developers/index.apt maven/site/trunk/content/apt/developers/java5.apt maven/site/trunk/content/apt/developers/java6.apt maven/site/trunk/content/apt/developers/retirement-plan-plugins.apt Modified: maven/site/trunk/content/apt/developers/committer-environment.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/committer-environment.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/committer-environment.apt (original) +++ maven/site/trunk/content/apt/developers/committer-environment.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Introduction @@ -41,7 +41,7 @@ Introduction Subversion Configuration Before committing files in subversion repository, you need to read the - {{{http://www.apache.org/dev/version-control.html#https-svn}Committer Subversion Access}} + {{{https://www.apache.org/dev/version-control.html#https-svn}Committer Subversion Access}} document and you must set your svn client with this properties file: {{{./svn-eol-style.txt}svn-eol-style.txt}} {Maven Code Style} Modified: maven/site/trunk/content/apt/developers/committer-settings.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/committer-settings.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/committer-settings.apt (original) +++ maven/site/trunk/content/apt/developers/committer-settings.apt Fri Feb 12 19:25:09 2016 @@ -25,7 +25,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Introduction Modified: maven/site/trunk/content/apt/developers/conventions/code.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/conventions/code.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/conventions/code.apt (original) +++ maven/site/trunk/content/apt/developers/conventions/code.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Maven Code Style And Code Conventions @@ -35,11 +35,11 @@ Maven Code Style And Code Conventions All working files (java, xml, others) should respect the following conventions: - * <<License Header>>: Always add the current {{{http://www.apache.org/legal/src-headers.html#headers}ASF license header}} + * <<License Header>>: Always add the current {{{https://www.apache.org/legal/src-headers.html#headers}ASF license header}} in all versionned files. * <<Trailing Whitespaces>>: Remove all trailing whitespaces. If your are an Eclipse user, you could use the - {{{http://andrei.gmxhome.de/anyedit/}Anyedit Eclipse Plugin}}. + {{{https://andrei.gmxhome.de/anyedit/}Anyedit Eclipse Plugin}}. ~~ * Using SVN properties like \$Id: \$ => Is it a wanted goal for all files like java or apt? [] @@ -228,15 +228,15 @@ public class MyMojo ** {POM Code Convention} - The team has {{{http://maven.40175.n5.nabble.com/Proposal-Pom-Code-Style-WAS-svn-commit-r670264-maven-plugins-trunk-maven-site-plugin-pom-xml-td210642.html#a210643}voted}} + The team has {{{https://maven.40175.n5.nabble.com/Proposal-Pom-Code-Style-WAS-svn-commit-r670264-maven-plugins-trunk-maven-site-plugin-pom-xml-td210642.html#a210643}voted}} during the end of June 2008 to follow a specific POM convention to ordering POM elements. - The consequence of this vote is that the {{{http://maven.apache.org/ref/current/maven-model/maven.html}Maven project descriptor}} + The consequence of this vote is that the {{{https://maven.apache.org/ref/current/maven-model/maven.html}Maven project descriptor}} is <<no more>> considered as the reference for the ordering. The following is the recommended ordering for all Maven POM files: +-----+ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion/> <parent/> @@ -295,7 +295,7 @@ public class MyMojo [] <<Note>>: There existing two alternativs to change order of a pom file - {{{http://www.mojohaus.org/tidy-maven-plugin/}Tidy Maven Plugin}} or the + {{{https://www.mojohaus.org/tidy-maven-plugin/}Tidy Maven Plugin}} or the {{{https://code.google.com/p/sortpom/}maven-sortpom-plugin}}. ** {XDOC Code Convention} Modified: maven/site/trunk/content/apt/developers/conventions/git.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/conventions/git.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/conventions/git.apt (original) +++ maven/site/trunk/content/apt/developers/conventions/git.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Maven Git Convention Modified: maven/site/trunk/content/apt/developers/conventions/jira.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/conventions/jira.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/conventions/jira.apt (original) +++ maven/site/trunk/content/apt/developers/conventions/jira.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Maven JIRA Convention @@ -83,12 +83,12 @@ Maven JIRA Convention * Further Links - * {{{http://www.atlassian.com/software/jira/docs/latest/}JIRA Documentation}} + * {{{https://www.atlassian.com/software/jira/docs/latest/}JIRA Documentation}} - * {{{http://www.atlassian.com/software/jira/docs/latest/issues.html}What is an Issue?}} + * {{{https://www.atlassian.com/software/jira/docs/latest/issues.html}What is an Issue?}} - * {{{http://www.atlassian.com/software/jira/docs/latest/projects.html}What is a project?}} + * {{{https://www.atlassian.com/software/jira/docs/latest/projects.html}What is a project?}} - * {{{http://markmail.org/message/wfv2lw66i2gggnaq}how we handle JIRA versions Thread}} + * {{{https://markmail.org/message/wfv2lw66i2gggnaq}how we handle JIRA versions Thread}} [] Modified: maven/site/trunk/content/apt/developers/conventions/svn.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/conventions/svn.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/conventions/svn.apt (original) +++ maven/site/trunk/content/apt/developers/conventions/svn.apt Fri Feb 12 19:25:09 2016 @@ -25,7 +25,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Maven SVN Convention @@ -34,7 +34,7 @@ Maven SVN Convention * Subversion Configuration Before committing files in subversion repository, you need to read the - {{{http://www.apache.org/dev/version-control.html#https-svn}Committer Subversion Access}} + {{{https://www.apache.org/dev/version-control.html#https-svn}Committer Subversion Access}} document and you must set your svn client with this properties file: {{{../../developers/svn-eol-style.txt}svn-eol-style.txt}} Modified: maven/site/trunk/content/apt/developers/dependency-policies.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/dependency-policies.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/dependency-policies.apt (original) +++ maven/site/trunk/content/apt/developers/dependency-policies.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Maven Dependency Policies @@ -55,7 +55,7 @@ Maven Dependency Policies core Maven distribution and all the other components. The core Maven distribution is the binary and source distributions made - available from the http://maven.apache.org/download page. + available from the https://maven.apache.org/download page. * Applicability @@ -65,9 +65,9 @@ Maven Dependency Policies All dependencies which are included in the Core Maven Distribution must either: - * be licensed under a {{{http://www.apache.org/legal/resolved.html#category-a}Category A license}}; or + * be licensed under a {{{https://www.apache.org/legal/resolved.html#category-a}Category A license}}; or - * be licensed under a {{{http://www.apache.org/legal/resolved.html#category-b}Category B license}} and + * be licensed under a {{{https://www.apache.org/legal/resolved.html#category-b}Category B license}} and approved by a majority vote of the Apache Maven PMC. Votes for Category B licenses will be held on the d...@maven.apache.org mailing list. A majority of the PMC @@ -75,4 +75,4 @@ Maven Dependency Policies * Non-Core Dependencies - Non-Core components may only use Category A or Category B licenses. \ No newline at end of file + Non-Core components may only use Category A or Category B licenses. Modified: maven/site/trunk/content/apt/developers/index.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/index.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/index.apt (original) +++ maven/site/trunk/content/apt/developers/index.apt Fri Feb 12 19:25:09 2016 @@ -25,7 +25,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Maven Developer Centre @@ -104,9 +104,9 @@ Maven Developer Centre * Others Resources - * {{{http://www.apache.org/dev/}ASF Development Infrastructure Information}} + * {{{https://www.apache.org/dev/}ASF Development Infrastructure Information}} - * {{{http://www.apache.org/foundation/}About the Apache Software Foundation}} + * {{{https://www.apache.org/foundation/}About the Apache Software Foundation}} [] Modified: maven/site/trunk/content/apt/developers/java5.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/java5.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/java5.apt (original) +++ maven/site/trunk/content/apt/developers/java5.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Java 5 in Plugins and Components @@ -40,5 +40,5 @@ Java 5 in Plugins and Components When a plugin, or other component, decides to switch to Java 5, you should use the description field in JIRA to label the versions for the plugin, so that it is clear which version runs on which version of Java. See - {{{http://jira.codehaus.org/browse/MCHANGES#selectedTab=com.atlassian.jira.plugin.system.project%3Aversions-panel}Maven Changes Plugin}} + {{{https://issues.apache.org/jira/browse/MCHANGES#selectedTab=com.atlassian.jira.plugin.system.project%3Aversions-panel}Maven Changes Plugin}} for an example. Modified: maven/site/trunk/content/apt/developers/java6.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/java6.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/java6.apt (original) +++ maven/site/trunk/content/apt/developers/java6.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Java 6 in Plugins and Shared Components @@ -43,12 +43,12 @@ Java 6 in Plugins and Shared Components the description field for the versions in JIRA for the plugin/component, so that it is clear which version works with which version of Java. Mark the last Java 5 compatible version with "Last version to work with Java 5", - see {{{http://jira.codehaus.org/browse/MCHECKSTYLE/fixforversion/20631}example}}. + see {{{issues.apache.org/jira/browse/MCHECKSTYLE/fixforversion/20631}example}}. Mark the first version that requires Java 6 "This version requires Java 6", - see {{{http://jira.codehaus.org/browse/MCHECKSTYLE/fixforversion/20762}example}}. + see {{{issues.apache.org/jira/browse/MCHECKSTYLE/fixforversion/20762}example}}. Create an issue "Require Java 6" and schedule it for the first Java 6 - version, see {{{http://jira.codehaus.org/browse/MCHECKSTYLE-277}example}}. + version, see {{{issues.apache.org/jira/browse/MCHECKSTYLE-277}example}}. Reference this issue when you check in the code changes (see below) into version control @@ -56,7 +56,7 @@ Java 6 in Plugins and Shared Components Specify the Java requirements in <<<index.apt.vm>>>: "This plugin/component requires Java $\{javaVersion\}.", see - {{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/index.apt.vm?r1=1650811&r2=1652771&pathrev=1658048}example}}. + {{{https://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/site/apt/index.apt.vm?r1=1650811&r2=1652771&pathrev=1658048}example}}. We need to use the variable $\{javaVersion\} here, because $\{maven.compiler.source\} does not work in a site. @@ -78,14 +78,14 @@ Java 6 in Plugins and Shared Components sure that the effective-pom looks ok. * <<<maven-compiler-plugin>>> is defined in <<<maven-parent>>>, see - {{{http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26/pom.xml?view=markup#l842}example}} + {{{https://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26/pom.xml?view=markup#l842}example}} * <<<maven-enforcer-plugin>>> and the <<<enforceBytecodeVersion>>> rule is defined in <<<maven-parent>>>, see - {{{http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26/pom.xml?view=markup#l946}example}} + {{{https://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26/pom.xml?view=markup#l946}example}} * <<<maven-pmd-plugin>>> is defined in <<<maven-parent>>>, see - {{{http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26/pom.xml?view=markup#l1069}example}} + {{{https://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26/pom.xml?view=markup#l1069}example}} [] @@ -95,16 +95,16 @@ Java 6 in Plugins and Shared Components ~~ TODO The links in the following bullets should be changed to point to a tag, once maven-checkstyle-plugin has been released * <<<animal-sniffer-maven-plugin>>> is only defined in selected plugins, see - {{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?view=markup#l307}example in <<<maven-checkstyle-plugin>>>}}. + {{{https://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?view=markup#l307}example in <<<maven-checkstyle-plugin>>>}}. We should move it to maven-parent. * <<<buildhelper-maven-plugin>>> is used to create the signature for animal-sniffer and is only defined in selected plugins, see - {{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?view=markup#l295}example in <<<maven-checkstyle-plugin>>>}}. + {{{https://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?view=markup#l295}example in <<<maven-checkstyle-plugin>>>}}. We should move it to maven-parent. * <<<maven-plugin-plugin>>> is only defined in selected plugins, see - {{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?view=markup#l370}example in <<<maven-checkstyle-plugin>>>}}. + {{{https://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?view=markup#l370}example in <<<maven-checkstyle-plugin>>>}}. We should move it to maven-plugins parent. [] Modified: maven/site/trunk/content/apt/developers/retirement-plan-plugins.apt URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/retirement-plan-plugins.apt?rev=1730092&r1=1730091&r2=1730092&view=diff ============================================================================== --- maven/site/trunk/content/apt/developers/retirement-plan-plugins.apt (original) +++ maven/site/trunk/content/apt/developers/retirement-plan-plugins.apt Fri Feb 12 19:25:09 2016 @@ -24,7 +24,7 @@ ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: -~~ http://maven.apache.org/doxia/references/apt-format.html +~~ https://maven.apache.org/doxia/references/apt-format.html Retirement Plan for Plugins @@ -65,7 +65,7 @@ it clear on the plugin site that it has will be moved into the "retired" area in Subversion. The process for retiring a plugin is described here: -http://maven.apache.org/developers/retirement-plan-plugins.html +https://maven.apache.org/developers/retirement-plan-plugins.html The vote is open for 72 hours. @@ -141,7 +141,7 @@ but has moved to the <Organization> <Pro [[1]] Remove the plugin from the <<<\<modules\>>>> section of the plugins aggregator POM. - [[1]] Remove any jobs from Continuous Integration servers like {{{http://builds.apache.org/}ASF Jenkins farm}}. + [[1]] Remove any jobs from Continuous Integration servers like {{{https://builds.apache.org/}ASF Jenkins farm}}. Plugins normally don't have separate jobs, but check anyway just to make sure. [[1]] Move the source code in Subversion. <Where to> depends on which scenario @@ -156,7 +156,7 @@ but has moved to the <Organization> <Pro [[1]] Comment the {{{https://builds.apache.org/view/M-R/view/Maven/job/dist-tool-plugin/site/dist-tool.conf.html}dist-tool configuration}} entry. [[1]] Remove distribution from current {{{https://dist.apache.org/repos/dist/release/maven/}dist area}} - (history remains available in {{{http://archive.apache.org/dist/maven/}archive}}). + (history remains available in {{{https://archive.apache.org/dist/maven/}archive}}). [[1]] Announce the fact that the plugin has been retired/moved on the announce@m.a.o and users@m.a.o mailing lists. Explain to people what they