[1/2] maven-surefire git commit: [SUREFIRE-1481] Surefire1295AttributeJvmCrashesToTestsIT should be Parameterized test instead of using Theories runner

2018-02-25 Thread tibordigana
Repository: maven-surefire
Updated Branches:
  refs/heads/master d46556f6d -> a7a5d4b96


[SUREFIRE-1481] Surefire1295AttributeJvmCrashesToTestsIT should be 
Parameterized test instead of using Theories runner


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/67532245
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/67532245
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/67532245

Branch: refs/heads/master
Commit: 67532245ca458acd7051afbd2e3db86f605fef17
Parents: d46556f
Author: Tibor17 
Authored: Wed Feb 21 21:04:10 2018 +0100
Committer: Tibor17 
Committed: Wed Feb 21 21:04:10 2018 +0100

--
 ...urefire1295AttributeJvmCrashesToTestsIT.java | 50 +---
 1 file changed, 33 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/67532245/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1295AttributeJvmCrashesToTestsIT.java
--
diff --git 
a/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1295AttributeJvmCrashesToTestsIT.java
 
b/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1295AttributeJvmCrashesToTestsIT.java
index e160f7a..96e6f41 100644
--- 
a/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1295AttributeJvmCrashesToTestsIT.java
+++ 
b/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1295AttributeJvmCrashesToTestsIT.java
@@ -22,22 +22,27 @@ package org.apache.maven.surefire.its.jiras;
 import org.apache.maven.surefire.its.fixture.OutputValidator;
 import org.apache.maven.surefire.its.fixture.SurefireJUnit4IntegrationTestCase;
 import org.apache.maven.surefire.its.fixture.SurefireLauncher;
-import org.junit.experimental.theories.DataPoints;
-import org.junit.experimental.theories.FromDataPoints;
-import org.junit.experimental.theories.Theories;
-import org.junit.experimental.theories.Theory;
+import org.junit.Test;
 import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.Parameter;
+import org.junit.runners.Parameterized.Parameters;
 
 import java.util.Iterator;
 
+import static java.util.Arrays.asList;
 import static java.util.concurrent.TimeUnit.SECONDS;
 import static org.apache.commons.lang3.SystemUtils.IS_OS_LINUX;
 import static org.apache.commons.lang3.SystemUtils.IS_OS_MAC_OSX;
 import static org.apache.commons.lang3.SystemUtils.IS_OS_WINDOWS_7;
 import static org.apache.commons.lang3.SystemUtils.IS_OS_WINDOWS_8;
 import static org.apache.commons.lang3.SystemUtils.IS_OS_WINDOWS_10;
+import static 
org.apache.maven.surefire.its.jiras.Surefire1295AttributeJvmCrashesToTestsIT.ForkMode.DEFAULT;
+import static 
org.apache.maven.surefire.its.jiras.Surefire1295AttributeJvmCrashesToTestsIT.ForkMode.ONE_FORK_NO_REUSE;
+import static 
org.apache.maven.surefire.its.jiras.Surefire1295AttributeJvmCrashesToTestsIT.ForkMode.ONE_FORK_REUSE;
 import static org.fest.assertions.Assertions.assertThat;
 import static org.junit.Assert.fail;
+import static org.junit.Assume.assumeTrue;
 
 /**
  * https://issues.apache.org/jira/browse/SUREFIRE-1295
@@ -46,7 +51,7 @@ import static org.junit.Assert.fail;
  * @author michaeltandy
  * @since 2.20
  */
-@RunWith( Theories.class )
+@RunWith( Parameterized.class )
 public class Surefire1295AttributeJvmCrashesToTestsIT
 extends SurefireJUnit4IntegrationTestCase
 {
@@ -57,22 +62,33 @@ public class Surefire1295AttributeJvmCrashesToTestsIT
 ONE_FORK_REUSE
 }
 
-@DataPoints( "crashStyle" )
-public static String[] crashStyle = { "exit", "abort", "segfault" };
+@Parameters
+public static Iterable parameters()
+{
+return asList(new Object[][] {
+{ "exit", DEFAULT },
+{ "exit", ONE_FORK_NO_REUSE },
+{ "exit", ONE_FORK_REUSE },
+{ "abort", DEFAULT },
+{ "abort", ONE_FORK_NO_REUSE },
+{ "abort", ONE_FORK_REUSE },
+{ "segfault", DEFAULT },
+{ "segfault", ONE_FORK_NO_REUSE },
+{ "segfault", ONE_FORK_REUSE }
+});
+}
+
+@Parameter( 0 )
+public static String crashStyle;
 
-@DataPoints( "forkStyle" )
-public static ForkMode[] forkStyle = ForkMode.values();
+@Parameter( 1 )
+public static ForkMode forkStyle;
 
-@Theory
-public void test( @FromDataPoints( "crashStyle" ) String crashStyle,
-  @FromDataPoints( "forkStyle" ) ForkMode forkStyle )
+@Test
+public void test()
 throws Exception
 {
-// JUnit Assumptions not 

[2/2] maven-surefire git commit: [SUREFIRE-1489] Implement different HTTP ports in ITs and zip() in jenkinsfile

2018-02-25 Thread tibordigana
[SUREFIRE-1489] Implement different HTTP ports in ITs and zip() in jenkinsfile


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/a7a5d4b9
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/a7a5d4b9
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/a7a5d4b9

Branch: refs/heads/master
Commit: a7a5d4b96a923acbf8a2659781d31f3236aa841e
Parents: 6753224
Author: Tibor17 
Authored: Mon Feb 26 03:19:31 2018 +0100
Committer: Tibor17 
Committed: Mon Feb 26 03:27:22 2018 +0100

--
 Jenkinsfile   | 157 +++--
 maven-failsafe-plugin/pom.xml |   6 ++
 surefire-booter/pom.xml   |  13 ---
 3 files changed, 68 insertions(+), 108 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/a7a5d4b9/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 822bbc1..0b6e691 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -26,42 +26,45 @@ properties(
 ]
 )
 
-final String NIX_LABEL = 'ubuntu-1||ubuntu-4||ubuntu-6||H19||H20'
-final String WIN_LABEL = 'windows-2016-1'
-
 final def oses = ['linux', 'windows']
-final def mavens = ['3.2.x', '3.3.x', '3.5.x'] // env.BRANCH_NAME == 'master' 
? ['3.2.x', '3.3.x', '3.5.x'] : ['3.5.x']
-final def jdks = ['7', '8', '9', '10'] // env.BRANCH_NAME == 'master' ? ['7', 
'8', '9', '10'] : ['10']
+final def mavens = env.BRANCH_NAME == 'master' ? ['3.2.x', '3.3.x', '3.5.x'] : 
['3.5.x']
+final def jdks = env.BRANCH_NAME == 'master' ? [7, 8, 9, 10] : [9, 10]
 
-final def cmd = ['mvn']
-final def options = ['-e', '-V', '-nsu', '-P', 'run-its']
+final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install', 'jacoco:report']
 final Map stages = [:]
 
 oses.eachWithIndex { os, indexOfOs ->
-stages[os] = {
-mavens.eachWithIndex { maven, indexOfMaven ->
-jdks.eachWithIndex { jdk, indexOfJdk ->
-final String label = jenkinsEnv.labelForOS(os);
-final String jdkTestName = jenkinsEnv.jdkFromVersion(os, jdk)
-final String jdkName = jenkinsEnv.jdkFromVersion(os, '8')
-final String mvnName = jenkinsEnv.mvnFromVersion(os, maven)
-final String stageKey = "${os}-jdk${jdk}-maven${maven}"
+mavens.eachWithIndex { maven, indexOfMaven ->
+jdks.eachWithIndex { jdk, indexOfJdk ->
+final String label = jenkinsEnv.labelForOS(os);
+final String jdkTestName = jenkinsEnv.jdkFromVersion(os, 
jdk.toString())
+final String jdkName = jenkinsEnv.jdkFromVersion(os, '8')
+final String mvnName = jenkinsEnv.mvnFromVersion(os, maven)
+final String stageKey = "${os}-jdk${jdk}-maven${maven}"
+
+def mavenOpts = '-server -XX:+UseG1GC -XX:+TieredCompilation 
-XX:TieredStopAtLevel=1 -XX:+UseNUMA \
+-Xms64m -Djava.awt.headless=true'
+if (jdk > 7) {
+mavenOpts += ' -XX:+UseStringDeduplication'
+}
+mavenOpts += (os == 'linux' ? ' -Xmx1g' : ' -Xmx256m')
 
-if (label == null || jdkTestName == null || mvnName == null) {
-println "Skipping ${stageKey} as unsupported by Jenkins 
Environment."
-return;
-}
+if (label == null || jdkTestName == null || mvnName == null) {
+println "Skipping ${stageKey} as unsupported by Jenkins 
Environment."
+return;
+}
 
-println "${stageKey}  ==>  Label: ${label}, JDK: 
${jdkTestName}, Maven: ${mvnName}."
-if (os == 'windows') {
-node(WIN_LABEL) {
-buildProcess(stageKey, jdkName, jdkTestName, mvnName, 
cmd, options, goals, false)
-}
-} else {
-node(NIX_LABEL) {
-boolean makeReports = indexOfMaven == mavens.size() - 
1 && jdk == '9'
-buildProcess(stageKey, jdkName, jdkTestName, mvnName, 
cmd, options, goals, makeReports)
+println "${stageKey}  ==>  Label: ${label}, JDK: ${jdkTestName}, 
Maven: ${mvnName}."
+
+stages[stageKey] = {
+node(label) {
+timestamps {
+//https://github.com/jacoco/jacoco/issues/629
+def boolean makeReports = os == 'linux' && 
indexOfMaven == mavens.size() - 1 && jdk == 9
+def failsafeItPort = 8000 + 100 * indexOfMaven + 10 * 
indexOfJdk
+def allOptions = options + 
["-Dfailsafe-integration-test-port=${failsafeItPort}", 

svn commit: r1025959 [46/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,194 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Maven Archetypes  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Overview
+Introduction
+http://www.apache.org/licenses/; class="externalLink" 
title="License">License
+Download
+  Modules
+Maven Archetype Archetype
+Maven Simple J2EE Archetype
+Maven Plugin Archetype
+Maven Plugin Site Archetype
+Maven Portlet Archetype
+Maven Profiles Archetype
+Maven Quickstart 
Archetype
+Maven Simple Project 
Archetype
+Maven Site Archetype
+Maven Archetype for Simple 
Site
+Maven Webapp Archetype
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Project Modules
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+Archetypes provided by Maven.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Project Modules
+This document lists the modules (sub-projects) of this project.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the 

svn commit: r1025959 [41/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Site Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Site Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-
+PMC Member
++1
+

svn commit: r1825327 - /maven/archetypes/trunk/src/site/apt/index.apt

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:57:34 2018
New Revision: 1825327

URL: http://svn.apache.org/viewvc?rev=1825327=rev
Log:
added Markdown

Modified:
maven/archetypes/trunk/src/site/apt/index.apt

Modified: maven/archetypes/trunk/src/site/apt/index.apt
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/src/site/apt/index.apt?rev=1825327=1825326=1825327=diff
==
--- maven/archetypes/trunk/src/site/apt/index.apt (original)
+++ maven/archetypes/trunk/src/site/apt/index.apt Sun Feb 25 20:57:34 2018
@@ -47,7 +47,7 @@ Maven Archetypes
 
*-++
 | {{{./maven-archetype-simple/}maven-archetype-simple}}   | An 
archetype to generate a simple Maven project. |
 
*-++
-| {{{./maven-archetype-site/}maven-archetype-site}}   | An 
archetype to generate a sample Maven site which demonstrates some of the 
supported document types like APT, XDoc, and FML and demonstrates how to i18n 
your site. |
+| {{{./maven-archetype-site/}maven-archetype-site}}   | An 
archetype to generate a sample Maven site which demonstrates some of the 
supported document types like APT, Markdown, XDoc, and FML and demonstrates how 
to i18n your site. |
 
*-++
 | {{{./maven-archetype-site-simple/}maven-archetype-site-simple}} | An 
archetype to generate a sample Maven site. |
 
*-++




svn commit: r1025959 [16/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,178 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Plugin Site Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Plugin Site Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample Maven plugin site. This archetype can 
be layered upon an
+existing Maven plugin project.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the 

svn commit: r1025959 [47/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,786 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Maven Archetypes  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Overview
+Introduction
+http://www.apache.org/licenses/; class="externalLink" 
title="License">License
+Download
+  Modules
+Maven Archetype Archetype
+Maven Simple J2EE Archetype
+Maven Plugin Archetype
+Maven Plugin Site Archetype
+Maven Portlet Archetype
+Maven Profiles Archetype
+Maven Quickstart 
Archetype
+Maven Simple Project 
Archetype
+Maven Site Archetype
+Maven Archetype for Simple 
Site
+Maven Webapp Archetype
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Project Modules
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam

svn commit: r1025959 [27/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,157 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Profiles Archetype  Maven Profiles Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Profiles Archetype/
+Maven Profiles Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-profiles/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management

svn commit: r1025959 [30/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/dependency-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/dependency-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/dependency-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,164 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Quickstart Archetype  Project Dependency 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Quickstart Archetype/
+Project Dependency Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency 
Management
+Dependencies
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Dependency 
Management
+
+compile
+The following is a list of compile dependencies in the DependencyManagement 
of this project. These dependencies can be included in the submodules to 
compile and run the submodule:
+
+
+GroupId
+ArtifactId
+Version
+Type
+License
+
+org.codehaus.plexus
+http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/;>plexus-component-annotations
+1.7.1
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+provided
+The following is a list of provided dependencies in the 
DependencyManagement of this project. These dependencies can be included in the 
submodules to compile the submodule, but should be provided by default when 
using the library:
+
+
+GroupId
+ArtifactId
+Version
+Type
+License
+
+org.apache.maven.plugin-tools
+https://maven.apache.org/plugin-tools/maven-plugin-annotations;>maven-plugin-annotations
+3.5.1
+jar
+https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of 

svn commit: r1025959 [35/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,155 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Simple Project Archetype  Maven Simple Project 
Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple Project Archetype/
+Maven Simple Project Archetype
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype

svn commit: r1025959 [17/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Plugin Site Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Plugin Site Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar

svn commit: r1025959 [26/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Profiles Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Profiles Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-profiles
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [38/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Site Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Site Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [31/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/application-certificate.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/close.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/close.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/contact-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/contact-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/document-properties.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/document-properties.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/drive-harddisk.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/drive-harddisk.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/fix.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/fix.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_error_sml.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_error_sml.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_help_sml.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_help_sml.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_info_sml.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_info_sml.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/images/icon_success_sml.gif

svn commit: r1025959 [25/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Portlet Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Portlet Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-
+PMC Member

svn commit: r1025959 [19/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,161 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Plugin Archetype  Maven Plugin Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Plugin Archetype/
+Maven Plugin Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 

svn commit: r1025959 [20/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Plugin Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Plugin Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample Maven plugin.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, and its sub modules.
+
+CI Management

svn commit: r1025959 [32/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/plugins.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/plugins.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/plugins.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,220 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Quickstart Archetype  Project Plugins
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Quickstart Archetype/
+Project Plugins
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependencies
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Build Plugins
+
+
+GroupId
+ArtifactId
+Version
+
+org.apache.maven.plugins
+http://maven.apache.org/archetype/maven-archetype-plugin;>maven-archetype-plugin
+3.0.1
+
+org.apache.maven.plugins
+https://maven.apache.org/plugins/maven-checkstyle-plugin/;>maven-checkstyle-plugin
+3.0.0
+
+org.apache.maven.plugins
+http://maven.apache.org/plugins/maven-clean-plugin/;>maven-clean-plugin
+3.0.0
+
+org.apache.maven.plugins
+http://maven.apache.org/plugins/maven-deploy-plugin/;>maven-deploy-plugin
+2.8.2
+
+org.apache.maven.plugins
+http://maven.apache.org/enforcer/maven-enforcer-plugin;>maven-enforcer-plugin
+1.4.1
+
+org.apache.maven.plugins
+http://maven.apache.org/plugins/maven-install-plugin/;>maven-install-plugin
+2.5.2
+
+org.apache.maven.plugins
+http://maven.apache.org/plugins/maven-remote-resources-plugin/;>maven-remote-resources-plugin
+1.5
+
+org.apache.maven.plugins
+https://maven.apache.org/plugins/maven-resources-plugin/;>maven-resources-plugin
+3.0.2
+
+org.apache.maven.plugins
+https://maven.apache.org/plugins/maven-site-plugin/;>maven-site-plugin
+3.7
+
+org.apache.rat
+http://creadur.apache.org/rat/apache-rat-plugin/;>apache-rat-plugin
+0.12
+
+Project Report Plugins
+
+
+GroupId
+ArtifactId
+Version
+
+org.apache.maven.plugins

svn commit: r1025959 [40/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,179 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Site Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Site Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample Maven site which demonstrates some of 
the supported document types like
+APT, XDoc, and FML and demonstrates how to i18n your site. This archetype 
can be layered
+upon an existing Maven project.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 

svn commit: r1025959 [23/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,160 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Portlet Archetype  Maven Portlet Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Portlet Archetype/
+Maven Portlet Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-portlet/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+

svn commit: r1025959 [34/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Simple Project Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple Project Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-simple
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [21/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Plugin Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Plugin Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-
+PMC Member
++1
+

svn commit: r1025959 [8/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Archetype Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample archetype.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, and its sub modules.
+
+CI 

svn commit: r1025959 [5/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/dependency-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/dependency-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/dependency-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,161 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Archetype Archetype  Dependency Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype Archetype/
+Dependency Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency 
Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Dependency Information
+
+Apache Maven
+dependency
+  groupIdorg.apache.maven.archetypes/groupId
+  artifactIdmaven-archetype-archetype/artifactId
+  version1.3-SNAPSHOT/version
+  typemaven-archetype/type
+/dependency
+
+Apache Buildr
+'org.apache.maven.archetypes:maven-archetype-archetype:maven-archetype:1.3-SNAPSHOT'
+
+Apache Ivy
+dependency 
org=org.apache.maven.archetypes 
name=maven-archetype-archetype rev=1.3-SNAPSHOT
+  artifact name=maven-archetype-archetype 
type=maven-archetype /
+/dependency
+
+Groovy Grape
+@Grapes(
+@Grab(group='org.apache.maven.archetypes', module='maven-archetype-archetype', 
version='1.3-SNAPSHOT')
+)
+
+Gradle/Grails
+compile 
'org.apache.maven.archetypes:maven-archetype-archetype:1.3-SNAPSHOT'
+
+Scala SBT
+libraryDependencies += 
org.apache.maven.archetypes % maven-archetype-archetype 
% 1.3-SNAPSHOT
+
+Leiningen
+[org.apache.maven.archetypes/maven-archetype-archetype 
1.3-SNAPSHOT]
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 

svn commit: r1025959 [37/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Simple Project Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple Project Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-

svn commit: r1025959 [2/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/apache-maven-fluido-1.7.min.css
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/apache-maven-fluido-1.7.min.css
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/apache-maven-fluido-1.7.min.css
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,17 @@
+/*!
+ * Bootstrap v2.3.2
+ *
+ * Copyright 2013 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world by @mdo and @fat.

[... 11 lines stripped ...]
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/print.css
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/print.css
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/print.css
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/* $Id$ */
+
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, 
#leftColumn, #navColumn {display: none !important;}
+#bodyColumn, body.docs div.docs {margin: 0 !important;border: none !important}
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/site.css
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/site.css
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/site.css
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1 @@
+/* You can override this file with your own styles */
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/dependency-convergence.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/dependency-convergence.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/dependency-convergence.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,169 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Maven Archetypes  Reactor Dependency 
Convergence
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+Reactor Dependency Convergence
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Overview
+Introduction
+http://www.apache.org/licenses/; class="externalLink" 
title="License">License
+Download
+  Modules
+Maven Archetype Archetype
+Maven Simple J2EE Archetype
+Maven Plugin Archetype
+Maven Plugin Site Archetype
+Maven Portlet Archetype
+Maven Profiles Archetype
+ 

svn commit: r1025959 [10/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Simple J2EE Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple J2EE Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-j2ee-simple
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [43/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,150 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Webapp Archetype  Maven Webapp Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Webapp Archetype/
+Maven Webapp Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-webapp/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 

svn commit: r1025959 [6/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.svg
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.svg
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.svg
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,229 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.ttf
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.ttf
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.woff
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/fonts/glyphicons-halflings-regular.woff
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/accessories-text-editor.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/accessories-text-editor.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/add.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/add.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/apache-maven-project-2.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/apache-maven-project-2.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/application-certificate.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/application-certificate.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/images/contact-new.png
==
Binary file - no diff available.


svn commit: r1025959 [15/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/remove.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,156 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Plugin Site Archetype  Maven Plugin Site 
Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Plugin Site Archetype/
+Maven Plugin Site Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin-site/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+

svn commit: r1025959 [12/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Simple J2EE Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple J2EE Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a simplified sample J2EE application.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, 

svn commit: r1025959 [28/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Profiles Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Profiles Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample Maven project which demonstrates the 
use of profiles.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 

svn commit: r1025959 [39/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,170 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Site Archetype  Maven Site Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Site Archetype/
+Maven Site Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-site/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+ 

svn commit: r1025959 [13/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Simple J2EE Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple J2EE Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar

svn commit: r1025959 [42/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Webapp Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Webapp Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-webapp
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [22/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Portlet Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Portlet Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-portlet
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [44/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Webapp Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Webapp Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample Maven Webapp project.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, and its sub modules.
+
+CI 

svn commit: r1025959 [14/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Plugin Site Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Plugin Site Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-plugin-site
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin-site/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [3/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,229 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.ttf
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.ttf
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.woff
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.woff
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/accessories-text-editor.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/accessories-text-editor.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/add.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/add.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/apache-maven-project-2.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/apache-maven-project-2.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/application-certificate.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/application-certificate.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/contact-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/contact-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/document-properties.png

svn commit: r1025959 [24/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-portlet/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Portlet Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Portlet Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample JSR-268 Portlet.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, and its sub modules.
+
+CI 

svn commit: r1025959 [18/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/distribution-management.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/distribution-management.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/distribution-management.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,139 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Plugin Archetype  Project Distribution 
Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Plugin Archetype/
+Project Distribution Management
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution 
Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+The following is the distribution management information used by this 
project.
+
+Repository - 
apache.releases.httpshttps://repository.apache.org/service/local/staging/deploy/maven2;>https://repository.apache.org/service/local/staging/deploy/maven2
+
+Snapshot 
Repository - apache.snapshots.httpshttps://repository.apache.org/content/repositories/snapshots;>https://repository.apache.org/content/repositories/snapshots
+
+Site - apache.website
+scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-plugin
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-plugin/fonts/glyphicons-halflings-regular.eot
==
Binary file - no diff available.

Propchange: 

svn commit: r1025959 [1/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:48:05 2018
New Revision: 1025959

Log:
Site checkin for project Apache Maven Archetypes

Added:

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/apache-maven-fluido-1.7.min.css

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/print.css

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/css/site.css

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/dependency-convergence.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/dependency-info.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/dependency-management.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/distribution-management.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/download.cgi

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/download.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.eot
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.ttf
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.woff
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/accessories-text-editor.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/add.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/apache-maven-project-2.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/application-certificate.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/contact-new.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/document-properties.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/drive-harddisk.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/fix.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/icon_error_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/icon_help_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/icon_info_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/icon_success_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/icon_warning_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/image-x-generic.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/internet-web-browser.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/logos/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/logos/build-by-maven-black.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/images/logos/build-by-maven-white.png
   (with props)


svn commit: r1025959 [7/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,165 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Archetype Archetype  Maven Archetype Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype Archetype/
+Maven Archetype Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Maven Archetype Archetype
+maven-archetype-archetype is an archetype which generates a sample 
archetype:
+
+project
+|-- pom.xml
+`-- src
+|-- main
+|   `-- resources
+|   |-- archetype-resources
+|   |   |-- pom.xml
+|   |   `-- src
+|   |   |-- main
+|   |   |   `-- java
+|   |   |   `-- App.java
+|   |   `-- test
+|   |   `-- java
+|   |   `-- AppTest.java
+|   `-- META-INF
+|   `-- maven
+|   `-- archetype-metadata.xml
+`-- test
+`-- resources
+`-- projects
+`-- it-basic
+|-- archetype.properties
+`-- goal.txt
+
+
+Usage
+To generate a new project from this archetype, type:
+
+mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes 
-DarchetypeArtifactId=maven-archetype-archetype -DarchetypeVersion=1.3-SNAPSHOT
+
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end 

svn commit: r1025959 [4/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,182 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Apache Maven Archetypes  Maven Archetypes
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+Maven Archetypes http://svn.apache.org/viewvc/maven/archetypes/trunk/src/site/apt/index.apt;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Overview
+Introduction
+http://www.apache.org/licenses/; class="externalLink" 
title="License">License
+Download
+  Modules
+Maven Archetype Archetype
+Maven Simple J2EE Archetype
+Maven Plugin Archetype
+Maven Plugin Site Archetype
+Maven Portlet Archetype
+Maven Profiles Archetype
+Maven Quickstart 
Archetype
+Maven Simple Project 
Archetype
+Maven Site Archetype
+Maven Archetype for Simple 
Site
+Maven Webapp Archetype
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Project Modules
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Maven Archetypes
+Maven provides several archetype artifacts:
+
+
+Archetype ArtifactIds
+Description
+
+maven-archetype-archetype
+An archetype to generate a sample archetype.
+
+maven-archetype-j2ee-simple
+An archetype to generate a simplifed sample J2EE 
application.
+
+maven-archetype-plugin
+An archetype to generate a sample Maven plugin.
+
+maven-archetype-plugin-site
+An archetype to generate a sample Maven plugin site.
+
+maven-archetype-portlet
+An archetype to generate a sample JSR-268 Portlet.
+
+maven-archetype-quickstart
+An archetype to generate a sample Maven project.
+
+maven-archetype-simple
+An archetype to generate a simple Maven project.
+
+maven-archetype-site
+An archetype to generate a sample Maven site which 
demonstrates some of the supported document types like APT, XDoc, and FML and 
demonstrates how to i18n your site.
+
+maven-archetype-site-simple

svn commit: r1025959 [36/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-simple/project-info.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Simple Project Archetype  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple Project Archetype/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a simple Maven project.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, and its sub modules.
+

svn commit: r1025959 [45/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-webapp/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Webapp Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Webapp Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-
+PMC Member
++1
+

svn commit: r1025959 [33/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-quickstart/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,773 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Quickstart Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Quickstart Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependencies
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar

svn commit: r1025959 [11/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/remove.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/rss.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/rss.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/update.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/window-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/img/glyphicons-halflings-white.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/img/glyphicons-halflings.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-j2ee-simple/index.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,190 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Simple J2EE Archetype  Maven Simple J2EE 
Archetype
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Simple J2EE Archetype/
+Maven Simple J2EE Archetype http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+

svn commit: r1025959 [9/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js/

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-archetype/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Archetype Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-
+PMC 

svn commit: r1025959 [29/47] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ images/logos/ images/profiles/ img/ js

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-profiles/team-list.html
 Sun Feb 25 20:48:05 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Profiles Archetype  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven 
Profiles Archetype/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar
+mailto:and...@apache.org;>and...@apache.org
+-
+PMC 

svn commit: r1025957 [2/5] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ img/ js/ maven-archetype-site-simple/ ma

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg
 Sun Feb 25 20:36:28 2018
@@ -0,0 +1,229 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.ttf
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.ttf
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.woff
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.woff
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/accessories-text-editor.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/accessories-text-editor.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/add.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/add.gif
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/apache-maven-project-2.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/apache-maven-project-2.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/application-certificate.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/application-certificate.png
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/contact-new.png
==
Binary 

svn commit: r1025957 [4/5] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ img/ js/ maven-archetype-site-simple/ ma

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/project-info.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/project-info.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/project-info.html
 Sun Feb 25 20:36:28 2018
@@ -0,0 +1,177 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Archetype for Simple Site  Project Information
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype for Simple Site/
+Project Information
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+About
+An archetype which contains a sample Maven site.
+
+Summary
+This document lists other related information of this project
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Dependency Convergence
+This document presents the convergence of dependency versions across the 
entire project, and its 

svn commit: r1025957 [1/5] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ img/ js/ maven-archetype-site-simple/ ma

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:36:28 2018
New Revision: 1025957

Log:
Site checkin for project Maven Archetype for Simple Site

Added:

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/checkstyle.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/checkstyle.rss

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/css/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/css/apache-maven-fluido-1.7.min.css

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/css/print.css

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/css/site.css

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/dependency-convergence.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/dependency-info.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/dependency-management.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/distribution-management.html

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.eot
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.svg

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.ttf
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/fonts/glyphicons-halflings-regular.woff
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/accessories-text-editor.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/add.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/apache-maven-project-2.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/application-certificate.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/contact-new.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/document-properties.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/drive-harddisk.png
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/fix.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/icon_error_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/icon_help_sml.gif
   (with props)

websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/images/icon_info_sml.gif
   (with props)


svn commit: r1025957 [5/5] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ img/ js/ maven-archetype-site-simple/ ma

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/team-list.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/team-list.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/team-list.html
 Sun Feb 25 20:36:28 2018
@@ -0,0 +1,772 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven Archetype for Simple Site  Project Team
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype for Simple Site/
+Project Team
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Image
+Id
+Name
+Email
+Organization
+Roles
+Time Zone
+
+http://www.gravatar.com/avatar/d035aeb839495240c58bbb03992ceda8?d=mms=60;
 alt="" />
+rfscholte
+Robert Scholte
+mailto:rfscho...@apache.org;>rfscho...@apache.org
+-
+PMC Chair
+Europe/Amsterdam
+
+http://www.gravatar.com/avatar/cdbe99fe3d6af6a18dd8c35b0687a50b?d=mms=60;
 alt="" />
+aheritier
+Arnaud Hritier
+mailto:aherit...@apache.org;>aherit...@apache.org
+-
+PMC Member
++1
+
+http://www.gravatar.com/avatar/b44837697ce1ec56d63e7e851ee3967e?d=mms=60;
 alt="" />
+andham
+Anders Hammar

svn commit: r1025957 [3/5] - in /websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple: ./ css/ fonts/ images/ img/ js/ maven-archetype-site-simple/ ma

2018-02-25 Thread hboutemy
Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/index.html
==
--- 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/index.html
 (added)
+++ 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/index.html
 Sun Feb 25 20:36:28 2018
@@ -0,0 +1,153 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+
+
+Maven Archetype for Simple Site  Maven Archetype for Simple 
Site
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Archetypes/
+  Maven Archetype for Simple Site/
+Maven Archetype for Simple Site http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-site-simple/src/site/apt/index.apt.vm;>
+| 
Last Published: 2018-02-25
+  Version: 1.3-SNAPSHOT
+
+  
+  
+
+  
+
+  Parent Project
+Apache Maven Archetypes
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue Management
+Mailing Lists
+Dependency Management
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Maven Archetype for Simple 
Site
+maven-archetype-site-simple is an archetype which generates a 
sample Maven simple site:
+
+project
+|-- pom.xml
+`-- src
+`-- site
+|-- apt
+|   `-- index.apt
+|-- markdown
+|   |-- markdown-velocity.md.vm
+|   `-- markdown.md
+`-- site.xml
+
+This archetype can be layered upon an existing Maven project.
+
+Usage
+To generate a new project or update an existing project from this 
archetype, type:
+
+mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes 
-DarchetypeArtifactId=maven-archetype-site-simple 
-DarchetypeVersion=1.3-SNAPSHOT
+
+
+  
+
+
+
+  
+
+Copyright 20022018
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Added: 
websites/production/maven/components/archetypes-archives/archetypes-LATEST/maven-archetype-site-simple/maven-archetype-site-simple/integration.html
==
--- 

svn commit: r1825326 - in /maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown: ./ markdown-velocity.md.vm markdown.md

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:34:56 2018
New Revision: 1825326

URL: http://svn.apache.org/viewvc?rev=1825326=rev
Log:
added missing content

Added:

maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/

maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown-velocity.md.vm

maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown.md

Added: 
maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown-velocity.md.vm
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown-velocity.md.vm?rev=1825326=auto
==
--- 
maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown-velocity.md.vm
 (added)
+++ 
maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown-velocity.md.vm
 Sun Feb 25 20:34:56 2018
@@ -0,0 +1,13 @@
+Markdown Format with Velocity works
+---
+
+#[[###]]# But Markdown conflicts with Velocity on `${esc.h}${esc.h}` syntax
+
+Since `${esc.h}${esc.h}` denotes a
+[single line 
comment](http://velocity.apache.org/engine/1.7/vtl-reference.html#single-line-comments)
 in Velocity,
+Markdown headers using this syntax are suppressed from generated content.
+
+You can use [unparsed content 
syntax](http://velocity.apache.org/engine/1.7/vtl-reference.html#unparsed-content)
+`${esc.h}[[#[[##]]#]]${esc.h}` or
+[escape 
tool](http://velocity.apache.org/tools/2.0/apidocs/org/apache/velocity/tools/generic/EscapeTool.html)
+like `${esc.d}{esc.h}${esc.d}{esc.h}`.

Added: 
maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown.md
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown.md?rev=1825326=auto
==
--- 
maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown.md
 (added)
+++ 
maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/markdown/markdown.md
 Sun Feb 25 20:34:56 2018
@@ -0,0 +1,11 @@
+Markdown Format works
+---
+
+You can write your documentation in Markdown...
+
+
+
+### Subsection
+
+If you want to filter content with Velocity (files ending in `.vm`), please 
have a look at
+explanations on [Markdown conflict with Velocity on `##` 
syntax](./markdown-velocity.html).
\ No newline at end of file




svn commit: r1825325 - /maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:31:38 2018
New Revision: 1825325

URL: http://svn.apache.org/viewvc?rev=1825325=rev
Log:
fixed minimum Maven version prerequisite

Modified:

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

Modified: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825325=1825324=1825325=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 20:31:38 2018
@@ -38,7 +38,7 @@
 UTF-8
 1.7
 1.7
-3.0.4
+3.3.9
   
 
   




svn commit: r1825324 - /maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:27:15 2018
New Revision: 1825324

URL: http://svn.apache.org/viewvc?rev=1825324=rev
Log:
fixed missing escape

Modified:

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

Modified: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825324=1825323=1825324=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 20:27:15 2018
@@ -31,7 +31,7 @@
   http://www.example.com
 
   
-${maven.version}
+\${maven.version}
   
 
   
@@ -45,25 +45,25 @@
 
   org.apache.maven
   maven-plugin-api
-  ${maven.version}
+  \${maven.version}
   provided
 
 
   org.apache.maven
   maven-core
-  ${maven.version}
+  \${maven.version}
   provided
 
 
   org.apache.maven
   maven-artifact
-  ${maven.version}
+  \${maven.version}
   provided
 
 
   org.apache.maven
   maven-compat
-  ${maven.version}
+  \${maven.version}
   test
  
 




svn commit: r1825323 - in /maven/archetypes/trunk: maven-archetype-archetype/src/site/apt/ maven-archetype-j2ee-simple/src/site/apt/ maven-archetype-plugin-site/src/site/apt/ maven-archetype-portlet/s

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 20:24:08 2018
New Revision: 1825323

URL: http://svn.apache.org/viewvc?rev=1825323=rev
Log:
added/updated documentation of archetypes content

Added:
maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/
maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/index.apt.vm
maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/
maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/index.apt.vm
maven/archetypes/trunk/maven-archetype-portlet/src/site/apt/
maven/archetypes/trunk/maven-archetype-portlet/src/site/apt/index.apt.vm
maven/archetypes/trunk/maven-archetype-profiles/src/site/apt/
maven/archetypes/trunk/maven-archetype-profiles/src/site/apt/index.apt.vm
maven/archetypes/trunk/maven-archetype-simple/src/site/apt/
maven/archetypes/trunk/maven-archetype-simple/src/site/apt/index.apt.vm
Modified:
maven/archetypes/trunk/maven-archetype-plugin-site/src/site/apt/index.apt.vm
maven/archetypes/trunk/maven-archetype-site-simple/src/site/apt/index.apt.vm

Added: 
maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/index.apt.vm
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/index.apt.vm?rev=1825323=auto
==
--- maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/index.apt.vm 
(added)
+++ maven/archetypes/trunk/maven-archetype-archetype/src/site/apt/index.apt.vm 
Sun Feb 25 20:24:08 2018
@@ -0,0 +1,69 @@
+ --
+ ${project.name}
+ --
+ Hervé Boutemy
+ --
+ 2010-04-25
+ --
+
+~~ Licensed to the Apache Software Foundation (ASF) under one
+~~ or more contributor license agreements.  See the NOTICE file
+~~ distributed with this work for additional information
+~~ regarding copyright ownership.  The ASF licenses this file
+~~ to you under the Apache License, Version 2.0 (the
+~~ "License"); you may not use this file except in compliance
+~~ with the License.  You may obtain a copy of the License at
+~~
+~~   http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing,
+~~ software distributed under the License is distributed on an
+~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+~~ KIND, either express or implied.  See the License for the
+~~ specific language governing permissions and limitations
+~~ under the License.
+
+~~ NOTE: For help with the syntax of this file, see:
+~~ http://maven.apache.org/guides/mini/guide-apt-format.html
+
+${project.name}
+
+ <<<${project.artifactId}>>> is an archetype which generates a sample 
archetype:
+
+++
+
+project
+|-- pom.xml
+`-- src
+|-- main
+|   `-- resources
+|   |-- archetype-resources
+|   |   |-- pom.xml
+|   |   `-- src
+|   |   |-- main
+|   |   |   `-- java
+|   |   |   `-- App.java
+|   |   `-- test
+|   |   `-- java
+|   |   `-- AppTest.java
+|   `-- META-INF
+|   `-- maven
+|   `-- archetype-metadata.xml
+`-- test
+`-- resources
+`-- projects
+`-- it-basic
+|-- archetype.properties
+`-- goal.txt
+
+++
+
+* Usage
+
+ To generate a new project from this archetype, type:
+
+++
+
+mvn archetype:generate -DarchetypeGroupId=${project.groupId} 
-DarchetypeArtifactId=${project.artifactId} 
-DarchetypeVersion=${project.version}
+
+++

Added: 
maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/index.apt.vm
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/index.apt.vm?rev=1825323=auto
==
--- 
maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/index.apt.vm 
(added)
+++ 
maven/archetypes/trunk/maven-archetype-j2ee-simple/src/site/apt/index.apt.vm 
Sun Feb 25 20:24:08 2018
@@ -0,0 +1,94 @@
+ --
+ ${project.name}
+ --
+ Hervé Boutemy
+ --
+ 2010-04-25
+ --
+
+~~ Licensed to the Apache Software Foundation (ASF) under one
+~~ or more contributor license agreements.  See the NOTICE file
+~~ distributed with this work for additional information
+~~ regarding copyright ownership.  The ASF licenses this file
+~~ to you under the Apache License, Version 2.0 (the
+~~ "License"); you may not use this file except in compliance
+~~ with the License.  You may obtain a copy of the License at
+~~
+~~   http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing,
+~~ software distributed under the License is distributed on an
+~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+~~ KIND, either express or implied.  See the License for the
+~~ specific language governing permissions and 

[maven-jenkins-env] 01/01: JDK 1.6 (latest)

2018-02-25 Thread tibordigana
This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch jdk1.6
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-env.git

commit cf93c8236cf584297347c3d51c975aeb5934553f
Author: Tibor17 
AuthorDate: Sun Feb 25 21:07:29 2018 +0100

JDK 1.6 (latest)
---
 vars/jenkinsEnv.groovy | 4 
 1 file changed, 4 insertions(+)

diff --git a/vars/jenkinsEnv.groovy b/vars/jenkinsEnv.groovy
index 9b19ae3..b8b8c0d 100644
--- a/vars/jenkinsEnv.groovy
+++ b/vars/jenkinsEnv.groovy
@@ -34,6 +34,8 @@ class jenkinsEnv implements Serializable {
 switch (os) {
 case 'linux':
 switch (version) {
+case '6':
+return 'JDK 1.6 (latest)'
 case '7':
 return 'JDK 1.7 (latest)'
 case '8':
@@ -45,6 +47,8 @@ class jenkinsEnv implements Serializable {
 }
 case 'windows':
 switch(version) {
+case '6':
+return 'JDK 1.6 (latest)'
 case '7':
 return 'JDK 1.7 (latest)'
 case '8':

-- 
To stop receiving notification emails like this one, please contact
tibordig...@apache.org.


[maven-jenkins-env] branch jdk1.6 created (now cf93c82)

2018-02-25 Thread tibordigana
This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a change to branch jdk1.6
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-env.git.


  at cf93c82  JDK 1.6 (latest)

This branch includes the following new commits:

 new cf93c82  JDK 1.6 (latest)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
tibordig...@apache.org.


svn commit: r1825321 - in /maven/archetypes/trunk/maven-archetype-site-simple/src: main/resources/archetype-resources/src/site/markdown/ site/markdown/

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 19:46:31 2018
New Revision: 1825321

URL: http://svn.apache.org/viewvc?rev=1825321=rev
Log:
[MARCHETYPES-55] added Markdown example in wrong location...

Added:

maven/archetypes/trunk/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/markdown/
  - copied from r1825320, 
maven/archetypes/trunk/maven-archetype-site-simple/src/site/markdown/
Removed:
maven/archetypes/trunk/maven-archetype-site-simple/src/site/markdown/



[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Fixed.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new 58cab91  Fixed.
58cab91 is described below

commit 58cab91c765c68bd7144a53e2f4d2fad03b488fc
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:53:46 2018 +0100

Fixed.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 79ff90e..5021937 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( 'os' : [ "windows" ] , 'jdks' : [ "8" ] , 'maven' : [ 
"3.5.0"] )
+asfMavenTlpStdBuild( 'os' : [ "windows" ] , 'jdks' : ["8"] , 'maven' : [ 
"3.5.0"] )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Fixed.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new a1b3bf5  Fixed.
a1b3bf5 is described below

commit a1b3bf567ea01e67871707dcc5873ed264360726
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:53:01 2018 +0100

Fixed.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 6ec1238..79ff90e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( 'os' : "windows", 'jdks' : "8", 'maven' : "3.5.0" )
+asfMavenTlpStdBuild( 'os' : [ "windows" ] , 'jdks' : [ "8" ] , 'maven' : [ 
"3.5.0"] )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Fixed.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new cfcbbfa  Fixed.
cfcbbfa is described below

commit cfcbbfaabdfc55ee2e6c9410d562ad375a4feb4b
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:51:28 2018 +0100

Fixed.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e14dcfd..6ec1238 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( [ 'os' : "windows", 'jdks' : "8", 'maven' : "3.5.0" ] )
+asfMavenTlpStdBuild( 'os' : "windows", 'jdks' : "8", 'maven' : "3.5.0" )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Fixed.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new 84e834f  Fixed.
84e834f is described below

commit 84e834f90a7fcd5347fa11e2b1db30bf09a38744
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:48:15 2018 +0100

Fixed.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 2a39eed..e14dcfd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( [ "os" : "windows", "jdk" : "8", "maven" : "3.5.0" ] )
+asfMavenTlpStdBuild( [ 'os' : "windows", 'jdks' : "8", 'maven' : "3.5.0" ] )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Fixed.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new 1e305e8  Fixed.
1e305e8 is described below

commit 1e305e87226332ec816b75e744c8d4d99d5c4586
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:45:56 2018 +0100

Fixed.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 138afc7..2a39eed 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( [ 'os' : 'windows', 'jdk' : '8', 'maven' : '3.5.0' ] )
+asfMavenTlpStdBuild( [ "os" : "windows", "jdk" : "8", "maven" : "3.5.0" ] )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Added maven.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new a0c2e81  Added maven.
a0c2e81 is described below

commit a0c2e813031e1f1c299e882401dc915a4696c52f
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:44:20 2018 +0100

Added maven.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 6bfab16..138afc7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild( [ 'os' : 'windows', 'jdk' : '8' ] )
+asfMavenTlpStdBuild( [ 'os' : 'windows', 'jdk' : '8', 'maven' : '3.5.0' ] )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Just try with the failing combination.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new 5ddf2ce  Just try with the failing combination.
5ddf2ce is described below

commit 5ddf2cea05c523637fa01865aa986152398a85f8
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:42:16 2018 +0100

Just try with the failing combination.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 09ac70f..6bfab16 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild()
+asfMavenTlpStdBuild( [ 'os' : 'windows', 'jdk' : '8' ] )

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] 01/01: Testing upgrade of maven-invoker-plugin

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git

commit b69954cdbee699aefb2c06927832c9f894a84de8
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:36:18 2018 +0100

Testing upgrade of maven-invoker-plugin
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index 228a607..8623b00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -368,6 +368,7 @@ under the License.
   
   
 maven-invoker-plugin
+3.0.1
 
   
 install-descriptor

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated (02d4644 -> b69954c)

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git.


 discard 02d4644  Just trying.
 new b69954c  Testing upgrade of maven-invoker-plugin

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (02d4644)
\
 N -- N -- N   refs/heads/TEST-UPGRADE-MAVEN-VERIFIER (b69954c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml| 1 +
 src/it/resources/it-parent/pom.xml | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Just trying.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new 02d4644  Just trying.
02d4644 is described below

commit 02d4644497dfc903807b0af1c71676dc559c1b63
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 19:30:00 2018 +0100

Just trying.
---
 src/it/resources/it-parent/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/it/resources/it-parent/pom.xml 
b/src/it/resources/it-parent/pom.xml
index 0f60230..ca33ef3 100644
--- a/src/it/resources/it-parent/pom.xml
+++ b/src/it/resources/it-parent/pom.xml
@@ -34,7 +34,7 @@ under the License.
   
 
   it-remote
-  file:${remoteRepository}
+  file:/${remoteRepository}
   
 true
   
@@ -44,7 +44,7 @@ under the License.
 
 
   main-local
-  file:${localRepository}
+  file:/${localRepository}
   
 true
   
@@ -57,7 +57,7 @@ under the License.
   
 
   it-remote
-  file:${remoteRepository}
+  file:/${remoteRepository}
 
   
   

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-archetype] Git Push Summary

2018-02-25 Thread gboue
Repository: maven-archetype
Updated Branches:
  refs/heads/ARCHETYPE-492 [deleted] bb723acb4


maven-archetype git commit: [ARCHETYPE-492] Underscore in filenames problematic due to greedy regex

2018-02-25 Thread gboue
Repository: maven-archetype
Updated Branches:
  refs/heads/master 6116cd981 -> bb723acb4


[ARCHETYPE-492] Underscore in filenames problematic due to greedy regex

The pattern looking for tokens to replace in filenames should exactly
match , where  has at least 1 character, and
neither starts nor ends with an underscore (but it can contain single
underscores in the middle).


Project: http://git-wip-us.apache.org/repos/asf/maven-archetype/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-archetype/commit/bb723acb
Tree: http://git-wip-us.apache.org/repos/asf/maven-archetype/tree/bb723acb
Diff: http://git-wip-us.apache.org/repos/asf/maven-archetype/diff/bb723acb

Branch: refs/heads/master
Commit: bb723acb42efcffd335575499ac2569f98dbbaa9
Parents: 6116cd9
Author: Guillaume Boué 
Authored: Sun Feb 25 18:13:37 2018 +0100
Committer: Guillaume Boué 
Committed: Sun Feb 25 19:11:37 2018 +0100

--
 .../DefaultFilesetArchetypeGenerator.java   | 65 +---
 .../META-INF/maven/archetype-metadata.xml   |  2 +
 ...erscored-2property-with-default-1__.java | 14 +
 .../DefaultArchetypeGeneratorTest.java  |  6 ++
 .../archetype/test/ArchetypeGenerationTest.java |  2 +
 .../generate-12/archetype.properties.sample |  2 +
 6 files changed, 43 insertions(+), 48 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/bb723acb/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
--
diff --git 
a/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
 
b/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
index b21e1a0..2a5851c 100644
--- 
a/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
+++ 
b/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
@@ -65,6 +65,7 @@ import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 import java.util.Properties;
+import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipFile;
@@ -87,15 +88,10 @@ public class DefaultFilesetArchetypeGenerator
 private VelocityComponent velocity;
 
 /**
- * Token delimiter.
- */
-private static final String DELIMITER = "__";
-
-/**
  * Pattern used to detect tokens in a string. Tokens are any text 
surrounded
- * by the delimiter.
+ * by the delimiter __.
  */
-private static final Pattern TOKEN_PATTERN = Pattern.compile( ".*" + 
DELIMITER + ".*" + DELIMITER + ".*" );
+private static final Pattern TOKEN_PATTERN = Pattern.compile( 
"__((?:[^_]+_)*[^_]+)__" );
 
 public void generateArchetype( ArchetypeGenerationRequest request, File 
archetypeFile )
 throws UnknownArchetype, ArchetypeNotConfigured, 
ProjectDirectoryExists, PomFileExists, OutputFileExists,
@@ -365,16 +361,13 @@ public class DefaultFilesetArchetypeGenerator
 directory + "/" + ( packaged ? getPackageAsDirectory( packageName 
) : "" ) + "/" + templateName.substring(
 moduleOffset.length() );
 
-if ( TOKEN_PATTERN.matcher( outputFileName ).matches() )
-{
-outputFileName = replaceFilenameTokens( outputFileName, context );
-}
+outputFileName = replaceFilenameTokens( outputFileName, context );
 
 return new File( outputDirectoryFile, outputFileName );
 }
 
 /**
- * Replaces all tokens (text surrounded by the {@link #DELIMITER}) within
+ * Replaces all tokens (text matching {@link #TOKEN_PATTERN}) within
  * the given string, using properties contained within the context. If a
  * property does not exist in the context, the token is left unmodified
  * and a warning is logged.
@@ -384,62 +377,38 @@ public class DefaultFilesetArchetypeGenerator
  */
 private String replaceFilenameTokens( final String filePath, final Context 
context )
 {
-String interpolatedResult = filePath;
-
-int start = 0;
+StringBuffer interpolatedResult = new StringBuffer();
+Matcher matcher = TOKEN_PATTERN.matcher( filePath );
 
-while ( true )
+while ( matcher.find() )
 {
-start = interpolatedResult.indexOf( DELIMITER, start );
-
-if ( start == -1 )
-{
-break;
-}
-
-int end = interpolatedResult.indexOf( DELIMITER, start + 
DELIMITER.length() );
-
-if ( end == -1 )
-{
-break;
-}
-
-String propertyToken = 

maven-archetype git commit: [ARCHETYPE-492] Underscore in filenames problematic due to greedy regex [Forced Update!]

2018-02-25 Thread gboue
Repository: maven-archetype
Updated Branches:
  refs/heads/ARCHETYPE-492 b515040da -> bb723acb4 (forced update)


[ARCHETYPE-492] Underscore in filenames problematic due to greedy regex

The pattern looking for tokens to replace in filenames should exactly
match , where  has at least 1 character, and
neither starts nor ends with an underscore (but it can contain single
underscores in the middle).


Project: http://git-wip-us.apache.org/repos/asf/maven-archetype/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-archetype/commit/bb723acb
Tree: http://git-wip-us.apache.org/repos/asf/maven-archetype/tree/bb723acb
Diff: http://git-wip-us.apache.org/repos/asf/maven-archetype/diff/bb723acb

Branch: refs/heads/ARCHETYPE-492
Commit: bb723acb42efcffd335575499ac2569f98dbbaa9
Parents: 6116cd9
Author: Guillaume Boué 
Authored: Sun Feb 25 18:13:37 2018 +0100
Committer: Guillaume Boué 
Committed: Sun Feb 25 19:11:37 2018 +0100

--
 .../DefaultFilesetArchetypeGenerator.java   | 65 +---
 .../META-INF/maven/archetype-metadata.xml   |  2 +
 ...erscored-2property-with-default-1__.java | 14 +
 .../DefaultArchetypeGeneratorTest.java  |  6 ++
 .../archetype/test/ArchetypeGenerationTest.java |  2 +
 .../generate-12/archetype.properties.sample |  2 +
 6 files changed, 43 insertions(+), 48 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/bb723acb/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
--
diff --git 
a/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
 
b/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
index b21e1a0..2a5851c 100644
--- 
a/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
+++ 
b/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
@@ -65,6 +65,7 @@ import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 import java.util.Properties;
+import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipFile;
@@ -87,15 +88,10 @@ public class DefaultFilesetArchetypeGenerator
 private VelocityComponent velocity;
 
 /**
- * Token delimiter.
- */
-private static final String DELIMITER = "__";
-
-/**
  * Pattern used to detect tokens in a string. Tokens are any text 
surrounded
- * by the delimiter.
+ * by the delimiter __.
  */
-private static final Pattern TOKEN_PATTERN = Pattern.compile( ".*" + 
DELIMITER + ".*" + DELIMITER + ".*" );
+private static final Pattern TOKEN_PATTERN = Pattern.compile( 
"__((?:[^_]+_)*[^_]+)__" );
 
 public void generateArchetype( ArchetypeGenerationRequest request, File 
archetypeFile )
 throws UnknownArchetype, ArchetypeNotConfigured, 
ProjectDirectoryExists, PomFileExists, OutputFileExists,
@@ -365,16 +361,13 @@ public class DefaultFilesetArchetypeGenerator
 directory + "/" + ( packaged ? getPackageAsDirectory( packageName 
) : "" ) + "/" + templateName.substring(
 moduleOffset.length() );
 
-if ( TOKEN_PATTERN.matcher( outputFileName ).matches() )
-{
-outputFileName = replaceFilenameTokens( outputFileName, context );
-}
+outputFileName = replaceFilenameTokens( outputFileName, context );
 
 return new File( outputDirectoryFile, outputFileName );
 }
 
 /**
- * Replaces all tokens (text surrounded by the {@link #DELIMITER}) within
+ * Replaces all tokens (text matching {@link #TOKEN_PATTERN}) within
  * the given string, using properties contained within the context. If a
  * property does not exist in the context, the token is left unmodified
  * and a warning is logged.
@@ -384,62 +377,38 @@ public class DefaultFilesetArchetypeGenerator
  */
 private String replaceFilenameTokens( final String filePath, final Context 
context )
 {
-String interpolatedResult = filePath;
-
-int start = 0;
+StringBuffer interpolatedResult = new StringBuffer();
+Matcher matcher = TOKEN_PATTERN.matcher( filePath );
 
-while ( true )
+while ( matcher.find() )
 {
-start = interpolatedResult.indexOf( DELIMITER, start );
-
-if ( start == -1 )
-{
-break;
-}
-
-int end = interpolatedResult.indexOf( DELIMITER, start + 
DELIMITER.length() );
-
-if ( end == -1 )
-{
-break;
-}
-
-

svn commit: r1825319 - in /maven/archetypes/trunk: maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/ maven-archetype-plugin-site/src/main/resources/archetype-resources/src/s

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 18:05:38 2018
New Revision: 1825319

URL: http://svn.apache.org/viewvc?rev=1825319=rev
Log:
[MARCHETYPES-55] added Markdown examples

Added:

maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/

maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown-velocity.md.vm

maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown.md
maven/archetypes/trunk/maven-archetype-site-simple/src/site/markdown/

maven/archetypes/trunk/maven-archetype-site-simple/src/site/markdown/markdown-velocity.md.vm

maven/archetypes/trunk/maven-archetype-site-simple/src/site/markdown/markdown.md

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/markdown/

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/markdown/markdown-velocity.md.vm

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/markdown/markdown.md

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/markdown/

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/markdown/markdown-velocity.md.vm

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/markdown/markdown.md
Modified:

maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/site.xml

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/site_fr.xml
maven/archetypes/trunk/maven-archetype-site/src/site/apt/index.apt.vm

Added: 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown-velocity.md.vm
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown-velocity.md.vm?rev=1825319=auto
==
--- 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown-velocity.md.vm
 (added)
+++ 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown-velocity.md.vm
 Sun Feb 25 18:05:38 2018
@@ -0,0 +1,13 @@
+Markdown Format with Velocity works
+---
+
+#[[###]]# But Markdown conflicts with Velocity on `${esc.h}${esc.h}` syntax
+
+Since `${esc.h}${esc.h}` denotes a
+[single line 
comment](http://velocity.apache.org/engine/1.7/vtl-reference.html#single-line-comments)
 in Velocity,
+Markdown headers using this syntax are suppressed from generated content.
+
+You can use [unparsed content 
syntax](http://velocity.apache.org/engine/1.7/vtl-reference.html#unparsed-content)
+`${esc.h}[[#[[##]]#]]${esc.h}` or
+[escape 
tool](http://velocity.apache.org/tools/2.0/apidocs/org/apache/velocity/tools/generic/EscapeTool.html)
+like `${esc.d}{esc.h}${esc.d}{esc.h}`.

Added: 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown.md
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown.md?rev=1825319=auto
==
--- 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown.md
 (added)
+++ 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/markdown/markdown.md
 Sun Feb 25 18:05:38 2018
@@ -0,0 +1,11 @@
+Markdown Format works
+---
+
+You can write your documentation in Markdown...
+
+
+
+### Subsection
+
+If you want to filter content with Velocity (files ending in `.vm`), please 
have a look at
+explanations on [Markdown conflict with Velocity on `##` 
syntax](./markdown-velocity.html).
\ No newline at end of file

Modified: 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml?rev=1825319=1825318=1825319=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
 Sun Feb 25 18:05:38 2018
@@ -47,6 

maven-archetype git commit: [ARCHETYPE-492] Underscore in filenames problematic due to greedy regex

2018-02-25 Thread gboue
Repository: maven-archetype
Updated Branches:
  refs/heads/ARCHETYPE-492 [created] b515040da


[ARCHETYPE-492] Underscore in filenames problematic due to greedy regex

The pattern looking for tokens to replace in filenames should exactly
match , where  has at least 1 character, and
neither starts nor ends with an underscore (but it can contain single
underscores in the middle).

Project: http://git-wip-us.apache.org/repos/asf/maven-archetype/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-archetype/commit/b515040d
Tree: http://git-wip-us.apache.org/repos/asf/maven-archetype/tree/b515040d
Diff: http://git-wip-us.apache.org/repos/asf/maven-archetype/diff/b515040d

Branch: refs/heads/ARCHETYPE-492
Commit: b515040dac1828a1fffbe19acf9d76eb337b70e6
Parents: 6116cd9
Author: Guillaume Boué 
Authored: Sun Feb 25 18:13:37 2018 +0100
Committer: Guillaume Boué 
Committed: Sun Feb 25 18:13:37 2018 +0100

--
 .../DefaultFilesetArchetypeGenerator.java   | 65 +---
 .../META-INF/maven/archetype-metadata.xml   |  3 +-
 ...erscored-2property-with-default-1__.java | 14 +
 .../DefaultArchetypeGeneratorTest.java  |  6 ++
 .../archetype/test/ArchetypeGenerationTest.java |  2 +
 .../generate-12/archetype.properties.sample |  2 +
 6 files changed, 43 insertions(+), 49 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/b515040d/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
--
diff --git 
a/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
 
b/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
index b21e1a0..2a5851c 100644
--- 
a/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
+++ 
b/archetype-common/src/main/java/org/apache/maven/archetype/generator/DefaultFilesetArchetypeGenerator.java
@@ -65,6 +65,7 @@ import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 import java.util.Properties;
+import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipFile;
@@ -87,15 +88,10 @@ public class DefaultFilesetArchetypeGenerator
 private VelocityComponent velocity;
 
 /**
- * Token delimiter.
- */
-private static final String DELIMITER = "__";
-
-/**
  * Pattern used to detect tokens in a string. Tokens are any text 
surrounded
- * by the delimiter.
+ * by the delimiter __.
  */
-private static final Pattern TOKEN_PATTERN = Pattern.compile( ".*" + 
DELIMITER + ".*" + DELIMITER + ".*" );
+private static final Pattern TOKEN_PATTERN = Pattern.compile( 
"__((?:[^_]+_)*[^_]+)__" );
 
 public void generateArchetype( ArchetypeGenerationRequest request, File 
archetypeFile )
 throws UnknownArchetype, ArchetypeNotConfigured, 
ProjectDirectoryExists, PomFileExists, OutputFileExists,
@@ -365,16 +361,13 @@ public class DefaultFilesetArchetypeGenerator
 directory + "/" + ( packaged ? getPackageAsDirectory( packageName 
) : "" ) + "/" + templateName.substring(
 moduleOffset.length() );
 
-if ( TOKEN_PATTERN.matcher( outputFileName ).matches() )
-{
-outputFileName = replaceFilenameTokens( outputFileName, context );
-}
+outputFileName = replaceFilenameTokens( outputFileName, context );
 
 return new File( outputDirectoryFile, outputFileName );
 }
 
 /**
- * Replaces all tokens (text surrounded by the {@link #DELIMITER}) within
+ * Replaces all tokens (text matching {@link #TOKEN_PATTERN}) within
  * the given string, using properties contained within the context. If a
  * property does not exist in the context, the token is left unmodified
  * and a warning is logged.
@@ -384,62 +377,38 @@ public class DefaultFilesetArchetypeGenerator
  */
 private String replaceFilenameTokens( final String filePath, final Context 
context )
 {
-String interpolatedResult = filePath;
-
-int start = 0;
+StringBuffer interpolatedResult = new StringBuffer();
+Matcher matcher = TOKEN_PATTERN.matcher( filePath );
 
-while ( true )
+while ( matcher.find() )
 {
-start = interpolatedResult.indexOf( DELIMITER, start );
-
-if ( start == -1 )
-{
-break;
-}
-
-int end = interpolatedResult.indexOf( DELIMITER, start + 
DELIMITER.length() );
-
-if ( end == -1 )
-{
-break;
-}
-
-String 

[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER updated: Fixing issues.

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git


The following commit(s) were added to refs/heads/TEST-UPGRADE-MAVEN-VERIFIER by 
this push:
 new 183fea7  Fixing issues.
183fea7 is described below

commit 183fea73a61f0718fc1ad3627ce5c1b11451ba11
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 18:42:59 2018 +0100

Fixing issues.
---
 src/it/resources/it-parent/pom.xml   | 4 
 src/it/resources/supplemental-artifact/resource-projects/pom.xml | 4 
 2 files changed, 8 insertions(+)

diff --git a/src/it/resources/it-parent/pom.xml 
b/src/it/resources/it-parent/pom.xml
index 2e62928..0f60230 100644
--- a/src/it/resources/it-parent/pom.xml
+++ b/src/it/resources/it-parent/pom.xml
@@ -27,6 +27,10 @@ under the License.
   
   pom
 
+  
+1.6
+1.6
+  
   
 
   it-remote
diff --git a/src/it/resources/supplemental-artifact/resource-projects/pom.xml 
b/src/it/resources/supplemental-artifact/resource-projects/pom.xml
index a1a4dbc..ae01efa 100644
--- a/src/it/resources/supplemental-artifact/resource-projects/pom.xml
+++ b/src/it/resources/supplemental-artifact/resource-projects/pom.xml
@@ -28,6 +28,10 @@ under the License.
 supplemental-models
 deficient-dep
   
+  
+1.6
+1.6
+  
   
   
 

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


svn commit: r1825317 - in /maven/archetypes/trunk: maven-archetype-plugin-site/src/main/resources-filtered/archetype-resources/ maven-archetype-plugin-site/src/main/resources/archetype-resources/src/s

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 17:40:16 2018
New Revision: 1825317

URL: http://svn.apache.org/viewvc?rev=1825317=rev
Log:
[MARCHETYPES-55] configure Fluido skin

Modified:

maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources-filtered/archetype-resources/pom.xml

maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml

maven/archetypes/trunk/maven-archetype-simple/src/main/resources-filtered/archetype-resources/pom.xml

maven/archetypes/trunk/maven-archetype-simple/src/main/resources/archetype-resources/src/site/site.xml

maven/archetypes/trunk/maven-archetype-site-simple/src/main/resources-filtered/archetype-resources/pom.xml

maven/archetypes/trunk/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/site.xml

maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/pom.xml

maven/archetypes/trunk/maven-archetype-site-simple/src/test/resources/projects/it-basic/reference/src/site/site.xml

maven/archetypes/trunk/maven-archetype-site/src/main/resources-filtered/archetype-resources/pom.xml

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/format.apt

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/format.apt

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/site.xml

maven/archetypes/trunk/maven-archetype-site/src/main/resources/archetype-resources/src/site/site_fr.xml

Modified: 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825317=1825316=1825317=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 17:40:16 2018
@@ -8,7 +8,7 @@
   \${artifactId}
   \${version}
 
-  Maven
+  \${artifactId}
   
   http://maven.apache.org/
   2001
@@ -24,9 +24,31 @@
 UTF-8
   
 
+  
+
+  
+
+  maven-clean-plugin
+  ${clean}
+
+
+  maven-site-plugin
+  ${site}
+
+
+  maven-project-info-reports-plugin
+  ${pir}
+
+  
+
+  
+
   
 
   
+maven-project-info-reports-plugin
+  
+  
 org.apache.maven.plugins
 maven-plugin-plugin
 

Modified: 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml?rev=1825317=1825316=1825317=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
 Sun Feb 25 17:40:16 2018
@@ -18,8 +18,25 @@
  */
 -->
 
-http://maven.apache.org/DECORATION/1.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
-  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 
http://maven.apache.org/xsd/decoration-1.0.0.xsd;>
+http://maven.apache.org/DECORATION/1.8.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
+  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 
http://maven.apache.org/xsd/decoration-1.8.0.xsd;>
+  
+${artifactId}
+https://maven.apache.org/images/apache-maven-project.png
+https://www.apache.org/
+  
+
+  
+https://maven.apache.org/images/maven-logo-black-on-white.png
+https://maven.apache.org/
+  
+
+  
+org.apache.maven.skins
+maven-fluido-skin
+1.7
+  
+
   
 
   
@@ -36,5 +53,7 @@
   
   
 
+
+
   
 

Modified: 
maven/archetypes/trunk/maven-archetype-simple/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-simple/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825317=1825316=1825317=diff
==
--- 
maven/archetypes/trunk/maven-archetype-simple/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-simple/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 17:40:16 2018
@@ -70,4 +70,12 @@
   
 
   
+
+  
+
+  
+

[maven-remote-resources-plugin] branch TEST-UPGRADE-MAVEN-VERIFIER created (now dda2c99)

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git.


  at dda2c99  Testing to upgrade maven-verifier

This branch includes the following new commits:

 new dda2c99  Testing to upgrade maven-verifier

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-remote-resources-plugin] 01/01: Testing to upgrade maven-verifier

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch TEST-UPGRADE-MAVEN-VERIFIER
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git

commit dda2c996294ece02f5a5e0a0b4ccb2ea503bd83c
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 18:32:41 2018 +0100

Testing to upgrade maven-verifier
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c726aa4..228a607 100644
--- a/pom.xml
+++ b/pom.xml
@@ -183,7 +183,7 @@ under the License.
 
   org.apache.maven.shared
   maven-verifier
-  1.5
+  1.6
   test
 
   

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


svn commit: r1825310 - /maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 16:33:01 2018
New Revision: 1825310

URL: http://svn.apache.org/viewvc?rev=1825310=rev
Log:
added Maven prerequisite

Modified:

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

Modified: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825310=1825309=1825310=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 16:33:01 2018
@@ -30,11 +30,15 @@
   
   http://www.example.com
 
+  
+${maven.version}
+  
+
   
 UTF-8
 1.7
 1.7
-3.5.2
+3.0.4
   
 
   




svn commit: r1825309 - /maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 16:32:31 2018
New Revision: 1825309

URL: http://svn.apache.org/viewvc?rev=1825309=rev
Log:
[MARCHETYPES-51] put maven-compat as test scope

Modified:

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

Modified: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825309=1825308=1825309=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 16:32:31 2018
@@ -60,7 +60,7 @@
   org.apache.maven
   maven-compat
   ${maven.version}
-  provided
+  test
  
 
   org.apache.maven.plugin-tools
@@ -128,7 +128,7 @@
   
 org.apache.maven.plugins
 maven-plugin-plugin
-3.5
+${plugin}
 
   
   true




svn commit: r1825308 - in /maven/archetypes/trunk/maven-archetype-plugin/src: main/resources-filtered/archetype-resources/ main/resources/META-INF/maven/ main/resources/archetype-resources/src/test/ m

2018-02-25 Thread hboutemy
Author: hboutemy
Date: Sun Feb 25 16:24:05 2018
New Revision: 1825308

URL: http://svn.apache.org/viewvc?rev=1825308=rev
Log:
[MARCHETYPES-51] added plugin testing harness
Submitted by: Nick Lombard

Added:

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/java/

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/java/MyMojoTest.java

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/resources/

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/resources/project-to-test/

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/resources/project-to-test/pom.xml
Modified:

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml
maven/archetypes/trunk/maven-archetype-plugin/src/site/apt/index.apt.vm

maven/archetypes/trunk/maven-archetype-plugin/src/test/resources/projects/it-basic/verify.groovy

Modified: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825308=1825307=1825308=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
 Sun Feb 25 16:24:05 2018
@@ -34,20 +34,52 @@
 UTF-8
 1.7
 1.7
+3.5.2
   
 
   
 
   org.apache.maven
   maven-plugin-api
-  2.0
+  ${maven.version}
+  provided
+
+
+  org.apache.maven
+  maven-core
+  ${maven.version}
+  provided
+
+
+  org.apache.maven
+  maven-artifact
+  ${maven.version}
+  provided
 
 
+  org.apache.maven
+  maven-compat
+  ${maven.version}
+  provided
+ 
+
   org.apache.maven.plugin-tools
   maven-plugin-annotations
   ${plugin}
   provided
 
+
+  junit
+  junit
+  4.12
+  test
+
+
+  org.apache.maven.plugin-testing
+  maven-plugin-testing-harness
+  3.3.0
+  test
+
   
 
   
@@ -96,8 +128,9 @@
   
 org.apache.maven.plugins
 maven-plugin-plugin
-3.2
+3.5
 
+  
   true
 
 
@@ -154,7 +187,6 @@
 
   
 
-
   
 
   

Modified: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1825308=1825307=1825308=diff
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml
 (original)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml
 Sun Feb 25 16:24:05 2018
@@ -25,6 +25,12 @@ under the License.
 
   src/main/java
 
+
+  src/test/java
+
+
+  src/test/resources
+
 
   src/it
 

Added: 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/java/MyMojoTest.java
URL: 
http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/java/MyMojoTest.java?rev=1825308=auto
==
--- 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/java/MyMojoTest.java
 (added)
+++ 
maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/test/java/MyMojoTest.java
 Sun Feb 25 16:24:05 2018
@@ -0,0 +1,76 @@
+package $package;
+
+##
+## Copyright 2001-2005 The Apache Software Foundation.
+##
+## Licensed under the Apache License, Version 2.0 (the "License");
+## you may not use this file except in compliance with the License.
+## You may obtain a copy of the License at
+##
+##  http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions 

[maven-archiver] branch MSHARED-686 created (now 5b599fb)

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MSHARED-686
in repository https://gitbox.apache.org/repos/asf/maven-archiver.git.


  at 5b599fb  [MSHARED-686] - Upgrade parent to 31

This branch includes the following new commits:

 new 5b599fb  [MSHARED-686] - Upgrade parent to 31

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-archiver] 01/01: [MSHARED-686] - Upgrade parent to 31

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MSHARED-686
in repository https://gitbox.apache.org/repos/asf/maven-archiver.git

commit 5b599fb96d99d2b630ba3e2f2ce31b0d7ddc034a
Author: Karl Heinz Marbaise 
AuthorDate: Sun Feb 25 16:30:20 2018 +0100

[MSHARED-686] - Upgrade parent to 31
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b2d8c1e..4ba5481 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.maven.shared
 maven-shared-components
-30
+31
 
../../pom/maven/maven-shared-components/pom.xml
   
 

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-ear-plugin] branch MEAR-255 deleted (was 568a562)

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MEAR-255
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git.


 was 568a562  [MEAR-255] - Upgrade parent to 31  o Fixed checkstyle 
reported issues relatedto the upgrade.

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-ear-plugin] branch master updated (214bbfe -> 568a562)

2018-02-25 Thread khmarbaise
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git.


from 214bbfe  moved to git
 add 568a562  [MEAR-255] - Upgrade parent to 31  o Fixed checkstyle 
reported issues relatedto the upgrade.

No new revisions were added by this update.

Summary of changes:
 pom.xml   | 2 +-
 .../org/apache/maven/plugins/ear/ApplicationXmlWriterContext.java | 2 +-
 src/main/java/org/apache/maven/plugins/ear/EnvEntry.java  | 4 ++--
 src/main/java/org/apache/maven/plugins/ear/JbossConfiguration.java| 2 +-
 src/main/java/org/apache/maven/plugins/ear/SecurityRole.java  | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
khmarba...@apache.org.


[maven-release] 04/04: [MRELEASE-694] -SNAPSHOT is unexpectedly appended to version in branched pom.xml

2018-02-25 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-release.git

commit c72c43139994fb2fb99b5fb422d5882d1226311b
Author: rfscholte 
AuthorDate: Sun Feb 25 14:53:17 2018 +0100

[MRELEASE-694] -SNAPSHOT is unexpectedly appended to version in branched 
pom.xml
---
 .../shared/release/phase/MapVersionsPhase.java | 12 +++-
 .../shared/release/phase/MapVersionsPhaseTest.java | 73 
 .../src/it/projects/branch/MRELEASE-694/pom.xml| 77 ++
 .../projects/branch/MRELEASE-694/test.properties   | 21 ++
 .../it/projects/branch/MRELEASE-694/verify.groovy  | 27 
 5 files changed, 208 insertions(+), 2 deletions(-)

diff --git 
a/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
 
b/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
index 8f4517d..700f53d 100644
--- 
a/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
+++ 
b/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
@@ -281,7 +281,7 @@ public class MapVersionsPhase
 {
 throw new ReleaseExecutionException( e.getMessage(), e 
);
 }
-   }
+}
 
 if ( releaseDescriptor.isInteractive() )
 {
@@ -295,10 +295,18 @@ public class MapVersionsPhase
 
   //@todo validate next version, maybe with 
DefaultArtifactVersion
 }
-else
+else if ( defaultVersion == null )
 {
 nextVersion = suggestedVersion;
 }
+else if ( convertToSnapshot )
+{
+throw new ReleaseExecutionException( defaultVersion + " is 
invalid, expected a snapshot" );
+}
+else
+{
+throw new ReleaseExecutionException( defaultVersion + " is 
invalid, expected a non-snapshot" );
+}
 }
 }
 catch ( PrompterException e )
diff --git 
a/maven-release-manager/src/test/java/org/apache/maven/shared/release/phase/MapVersionsPhaseTest.java
 
b/maven-release-manager/src/test/java/org/apache/maven/shared/release/phase/MapVersionsPhaseTest.java
index 36e98bb..338d979 100644
--- 
a/maven-release-manager/src/test/java/org/apache/maven/shared/release/phase/MapVersionsPhaseTest.java
+++ 
b/maven-release-manager/src/test/java/org/apache/maven/shared/release/phase/MapVersionsPhaseTest.java
@@ -2139,6 +2139,79 @@ public class MapVersionsPhaseTest
 // test
 phase.execute( ReleaseUtils.buildReleaseDescriptor( builder ), new 
DefaultReleaseEnvironment(), reactorProjects );
 }
+
+@Test
+public void testUpdateBranchInvalidDefaultReleaseVersion_NonInteractive()
+throws Exception
+{
+// prepare
+ReleasePhase phase = (MapVersionsPhase) lookup( ReleasePhase.class, 
TEST_MAP_BRANCH_VERSIONS );
+
+List reactorProjects = Collections.singletonList( 
createProject( "bar", "1.11-SNAPSHOT" ) );
+
+ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder();
+builder.setDefaultReleaseVersion( "3.0" );
+builder.setInteractive( false );
+builder.setUpdateBranchVersions( true );
+
+// test
+try {
+phase.execute( ReleaseUtils.buildReleaseDescriptor( builder ), new 
DefaultReleaseEnvironment(), reactorProjects );
+fail( "Should fail due to invalid version" );
+}
+catch( ReleaseExecutionException e )
+{
+assertEquals( "3.0 is invalid, expected a snapshot", 
e.getMessage() );
+}
+}
+
+@Test
+public void testUpdateReleaseInvalidDefaultReleaseVersion_NonInteractive()
+throws Exception
+{
+// prepare
+ReleasePhase phase = (MapVersionsPhase) lookup( ReleasePhase.class, 
TEST_MAP_RELEASE_VERSIONS );
+
+List reactorProjects = Collections.singletonList( 
createProject( "bar", "1.11-SNAPSHOT" ) );
+
+ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder();
+builder.setDefaultReleaseVersion( "3.0-SNAPSHOT" );
+builder.setInteractive( false );
+
+// test
+try {
+phase.execute( ReleaseUtils.buildReleaseDescriptor( builder ), new 
DefaultReleaseEnvironment(), reactorProjects );
+fail( "Should fail due to invalid version" );
+}
+catch( ReleaseExecutionException e )
+{
+assertEquals( "3.0-SNAPSHOT is invalid, expected a non-snapshot", 
e.getMessage() );
+}
+}
+
+@Test
+public void 

[maven-release] 03/04: Reorganize if/then/else -statements to reduce nesting

2018-02-25 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-release.git

commit bb16d94e7ec12b0ee00e1c803789c8594523c195
Author: rfscholte 
AuthorDate: Tue Feb 20 20:51:13 2018 +0100

Reorganize if/then/else -statements to reduce nesting
---
 .../shared/release/phase/MapVersionsPhase.java | 51 +-
 1 file changed, 21 insertions(+), 30 deletions(-)

diff --git 
a/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
 
b/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
index 1b585ab..8f4517d 100644
--- 
a/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
+++ 
b/maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/MapVersionsPhase.java
@@ -117,21 +117,18 @@ public class MapVersionsPhase
 
 String nextVersion = resolveNextVersion( project, projectId, 
releaseDescriptor, result );
 
-if ( convertToSnapshot )
+if ( !convertToSnapshot )
 {
-if ( releaseDescriptor.isBranchCreation() && convertToBranch )
-{
-releaseDescriptor.addReleaseVersion( projectId, 
nextVersion );
-}
-else
-{
-releaseDescriptor.addDevelopmentVersion( projectId, 
nextVersion );
-}
+releaseDescriptor.addReleaseVersion( projectId, nextVersion );
 }
-else
+else if ( releaseDescriptor.isBranchCreation() && convertToBranch )
 {
 releaseDescriptor.addReleaseVersion( projectId, nextVersion );
 }
+else
+{
+releaseDescriptor.addDevelopmentVersion( projectId, 
nextVersion );
+}
 
 for ( MavenProject subProject : reactorProjects )
 {
@@ -173,21 +170,18 @@ public class MapVersionsPhase
 
 String nextVersion = resolveNextVersion( project, projectId, 
releaseDescriptor, result );
 
-if ( convertToSnapshot )
+if ( !convertToSnapshot )
 {
-if ( releaseDescriptor.isBranchCreation() && 
convertToBranch )
-{
-releaseDescriptor.addReleaseVersion( projectId, 
nextVersion );
-}
-else
-{
-releaseDescriptor.addDevelopmentVersion( projectId, 
nextVersion );
-}
+releaseDescriptor.addReleaseVersion( projectId, 
nextVersion );
 }
-else
+else if ( releaseDescriptor.isBranchCreation() && 
convertToBranch )
 {
 releaseDescriptor.addReleaseVersion( projectId, 
nextVersion );
 }
+else
+{
+releaseDescriptor.addDevelopmentVersion( projectId, 
nextVersion );
+}
 }
 }
 
@@ -356,20 +350,17 @@ public class MapVersionsPhase
 {
 messageKey = "mapversion.branch.prompt";
 }
-else if ( convertToSnapshot )
+else if ( !convertToSnapshot )
 {
-if ( releaseDescriptor.isBranchCreation() )
-{
-messageKey = "mapversion.workingcopy.prompt";
-}
-else
-{
-messageKey = "mapversion.development.prompt";
-}
+messageKey = "mapversion.release.prompt";
+}
+else if ( releaseDescriptor.isBranchCreation() )
+{
+messageKey = "mapversion.workingcopy.prompt";
 }
 else
 {
-messageKey = "mapversion.release.prompt";
+messageKey = "mapversion.development.prompt";
 }
 return messageKey;
 }

-- 
To stop receiving notification emails like this one, please contact
rfscho...@apache.org.


[maven-release] 01/04: Copy javadoc

2018-02-25 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-release.git

commit 2a49b7fa2e85cfbdb46e869a9a0cd0ad82689e8b
Author: rfscholte 
AuthorDate: Mon Feb 12 20:39:37 2018 +0100

Copy javadoc
---
 .../shared/release/config/ReleaseDescriptor.java   | 263 -
 1 file changed, 262 insertions(+), 1 deletion(-)

diff --git 
a/maven-release-api/src/main/java/org/apache/maven/shared/release/config/ReleaseDescriptor.java
 
b/maven-release-api/src/main/java/org/apache/maven/shared/release/config/ReleaseDescriptor.java
index d9aa16a..042a347 100644
--- 
a/maven-release-api/src/main/java/org/apache/maven/shared/release/config/ReleaseDescriptor.java
+++ 
b/maven-release-api/src/main/java/org/apache/maven/shared/release/config/ReleaseDescriptor.java
@@ -29,110 +29,371 @@ import org.apache.maven.model.Scm;
  */
 public interface ReleaseDescriptor
 {
+/**
+ * Get if updateDependencies is false, dependencies version won't be 
updated to the next development version.
+ * 
+ * @return boolean
+ */
 boolean isUpdateDependencies();
 
+/**
+ * Get whether to use the release profile that adds sources and javadocs 
to the released artifact, if appropriate.
+ * If set to true, this will set the property "performRelease" to true.
+ * 
+ * @return boolean
+ */
 boolean isUseReleaseProfile();
 
+/**
+ * Get whether to use the parent pom version for submodule versions.
+ * 
+ * @return boolean
+ */
 boolean isAutoVersionSubmodules();
 
+/**
+ * Get whether a SNAPSHOT of the release plugin is allowed.
+ * 
+ * @return boolean
+ */
 boolean isSnapshotReleasePluginAllowed();
 
+/**
+ * Get the commits must be done by modules or not. Set it to true in case 
of flat directory structure.
+ * 
+ * @return boolean
+ */
 boolean isCommitByProject();
 
+/**
+ * Get whether to create a branch instead of do a release.
+ * 
+ * @return boolean
+ */
 boolean isBranchCreation();
 
+/**
+ * Get whether to update branch POM versions.
+ * 
+ * @return boolean
+ */
 boolean isUpdateBranchVersions();
 
+/**
+ * Get whether to update working copy POM versions.
+ * 
+ * @return boolean
+ */
 boolean isUpdateWorkingCopyVersions();
 
+/**
+ * Get whether to suppress a commit of changes to the working copy before 
a tag or branch is created.
+ * 
+ * @return boolean
+ */
 boolean isSuppressCommitBeforeTagOrBranch();
 
+/**
+ * Get should timestamped SNAPSHOT dependencies be allowed? Default is to 
fail when any SNAPSHOT dependency is
+ * found.
+ * 
+ * @return boolean
+ */
 boolean isAllowTimestampedSnapshots();
 
+/**
+ * Get whether to update branch versions to SNAPSHOT.
+ * 
+ * @return boolean
+ */
 boolean isUpdateVersionsToSnapshot();
 
+/**
+ * Get nOTE : currently only implemented with svn scm. Enable a workaround 
to prevent issue due to svn client >
+ * 1.5.0 (http://jira.codehaus.org/browse/SCM-406).
+ * 
+ * @return boolean
+ */
 boolean isRemoteTagging();
 
+/**
+ * Get if the scm provider should use local checkouts via 
file://${basedir} instead of doing a clean checkout over
+ * the network. This is very helpful for releasing large projects!
+ * 
+ * @return boolean
+ */
 boolean isLocalCheckout();
 
+/**
+ * Get should distributed changes be pushed to the central repository? For 
many distributed SCMs like Git, a change
+ * like a commit is only stored in your local copy of the repository. 
Pushing the change allows your to more easily
+ * share it with other users.
+ * 
+ * @return boolean
+ */
 boolean isPushChanges();
 
+/**
+ * Get default version to use for new working copy.
+ * 
+ * @return String
+ */
 String getDefaultDevelopmentVersion();
 
+/**
+ * Get relative path of the project returned by the checkout command.
+ * 
+ * @return String
+ */
 String getScmRelativePathProjectDirectory();
 
+/**
+ * Get the directory where the tag will be checked out.
+ * 
+ * @return String
+ */
 String getCheckoutDirectory();
 
+/**
+ * Get the goals to execute in perform phase for the release.
+ * 
+ * @return String
+ */
 String getPerformGoals();
 
+/**
+ * Get default version to use for the tagged release or the new branch.
+ * 
+ * @return String
+ */
 String getDefaultReleaseVersion();
 
+/**
+ * Get nOTE : currently only implemented with svn scm. It contains the 
revision of the committed released pom to
+ * remotely tag the source code with this revision.
+ * 
+ * @return String
+ */
 

[maven-release] branch master updated (419114d -> c72c431)

2018-02-25 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-release.git.


from 419114d  [MRELEASE-998] Add ability to create custom phases
 new 2a49b7f  Copy javadoc
 new 2b3ce94  Add unittest for DefaultVersionPolicy
 new bb16d94  Reorganize if/then/else -statements to reduce nesting
 new c72c431  [MRELEASE-694] -SNAPSHOT is unexpectedly appended to version 
in branched pom.xml

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../shared/release/config/ReleaseDescriptor.java   | 263 -
 .../shared/release/phase/MapVersionsPhase.java |  63 +++--
 .../shared/release/phase/MapVersionsPhaseTest.java |  73 ++
 .../release/policies/DefaultVersionPolicyTest.java |  73 ++
 .../branch/{MRELEASE-458 => MRELEASE-694}/pom.xml  |  40 ++--
 .../MRELEASE-694}/test.properties  |   9 +-
 .../{MRELEASE-976 => MRELEASE-694}/verify.groovy   |   9 +-
 7 files changed, 467 insertions(+), 63 deletions(-)
 create mode 100644 
maven-release-manager/src/test/java/org/apache/maven/shared/release/policies/DefaultVersionPolicyTest.java
 copy maven-release-plugin/src/it/projects/branch/{MRELEASE-458 => 
MRELEASE-694}/pom.xml (72%)
 copy maven-release-plugin/src/it/projects/{prepare/MRELEASE-483 => 
branch/MRELEASE-694}/test.properties (84%)
 copy maven-release-plugin/src/it/projects/branch/{MRELEASE-976 => 
MRELEASE-694}/verify.groovy (75%)

-- 
To stop receiving notification emails like this one, please contact
rfscho...@apache.org.


[maven-release] 02/04: Add unittest for DefaultVersionPolicy

2018-02-25 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-release.git

commit 2b3ce9436526be3d4b0018c6ad189a37dba7a784
Author: rfscholte 
AuthorDate: Sun Feb 18 13:54:59 2018 +0100

Add unittest for DefaultVersionPolicy
---
 .../release/policies/DefaultVersionPolicyTest.java | 73 ++
 1 file changed, 73 insertions(+)

diff --git 
a/maven-release-manager/src/test/java/org/apache/maven/shared/release/policies/DefaultVersionPolicyTest.java
 
b/maven-release-manager/src/test/java/org/apache/maven/shared/release/policies/DefaultVersionPolicyTest.java
new file mode 100644
index 000..9d923ea
--- /dev/null
+++ 
b/maven-release-manager/src/test/java/org/apache/maven/shared/release/policies/DefaultVersionPolicyTest.java
@@ -0,0 +1,73 @@
+package org.apache.maven.shared.release.policies;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import static org.junit.Assert.assertEquals;
+
+import org.apache.maven.shared.release.policy.version.VersionPolicy;
+import org.apache.maven.shared.release.policy.version.VersionPolicyRequest;
+import org.junit.Test;
+
+public class DefaultVersionPolicyTest
+{
+private VersionPolicy policy = new DefaultVersionPolicy();
+
+@Test
+public void testOneDigitReleaseVersion() throws Exception
+{
+VersionPolicyRequest request = new VersionPolicyRequest().setVersion( 
"1-SNAPSHOT" );
+assertEquals( "1", policy.getReleaseVersion( request ).getVersion() );
+}
+
+@Test
+public void testOneDigitDevelopmentVersion() throws Exception
+{
+VersionPolicyRequest request = new VersionPolicyRequest().setVersion( 
"1" );
+assertEquals( "2-SNAPSHOT", policy.getDevelopmentVersion( request 
).getVersion() );
+}
+
+@Test
+public void testTwoDigitsReleaseVersion() throws Exception
+{
+VersionPolicyRequest request = new VersionPolicyRequest().setVersion( 
"1.0-SNAPSHOT" );
+assertEquals( "1.0", policy.getReleaseVersion( request ).getVersion() 
);
+}
+
+@Test
+public void testTwoDigitsDevelopmentVersion() throws Exception
+{
+VersionPolicyRequest request = new VersionPolicyRequest().setVersion( 
"1.0" );
+assertEquals( "1.1-SNAPSHOT", policy.getDevelopmentVersion( request 
).getVersion() );
+}
+
+@Test
+public void testThreeDigitsReleaseVersion() throws Exception
+{
+VersionPolicyRequest request = new VersionPolicyRequest().setVersion( 
"1.0.0-SNAPSHOT" );
+assertEquals( "1.0.0", policy.getReleaseVersion( request 
).getVersion() );
+}
+
+@Test
+public void testThreeDigitsDevelopmentVersion() throws Exception
+{
+VersionPolicyRequest request = new VersionPolicyRequest().setVersion( 
"1.0.0" );
+assertEquals( "1.0.1-SNAPSHOT", policy.getDevelopmentVersion( request 
).getVersion() );
+}
+}

-- 
To stop receiving notification emails like this one, please contact
rfscho...@apache.org.


[maven-pmd-plugin] branch MPMD-253 deleted (was c059ee5)

2018-02-25 Thread gboue
This is an automated email from the ASF dual-hosted git repository.

gboue pushed a change to branch MPMD-253
in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git.


 was c059ee5  [MPMD-253] PMD links to java Xref fail in aggregated report

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
gb...@apache.org.


[maven-pmd-plugin] branch master updated (d79b0a2 -> c059ee5)

2018-02-25 Thread gboue
This is an automated email from the ASF dual-hosted git repository.

gboue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git.


from d79b0a2  Make IT runnable both on Windows and Linux.
 add c059ee5  [MPMD-253] PMD links to java Xref fail in aggregated report

No new revisions were added by this update.

Summary of changes:
 .../invoker.properties   |  0
 .../module}/pom.xml  | 18 +++---
 .../module/src/main/java/app}/App.java   |  2 +-
 .../pom.xml  | 12 +++-
 .../src/main/config/pmd/rules.xml|  4 ++--
 .../verify.groovy|  2 +-
 .../apache/maven/plugins/pmd/PmdReportGenerator.java | 20 +++-
 7 files changed, 29 insertions(+), 29 deletions(-)
 copy src/it/{mpmd-142 => MPMD-253-xref-link-multi-module}/invoker.properties 
(100%)
 copy src/it/{mpmd-138/mod-2 => MPMD-253-xref-link-multi-module/module}/pom.xml 
(71%)
 copy src/it/{MPMD-128-xref-link/src/main/java/mpmd128 => 
MPMD-253-xref-link-multi-module/module/src/main/java/app}/App.java (98%)
 copy src/it/{MPMD-128-xref-link => MPMD-253-xref-link-multi-module}/pom.xml 
(87%)
 copy src/it/{MPMD-128-xref-link => 
MPMD-253-xref-link-multi-module}/src/main/config/pmd/rules.xml (92%)
 copy src/it/{MPMD-128-xref-link => 
MPMD-253-xref-link-multi-module}/verify.groovy (93%)

-- 
To stop receiving notification emails like this one, please contact
gb...@apache.org.


[maven-pmd-plugin] branch MPMD-253 created (now c059ee5)

2018-02-25 Thread gboue
This is an automated email from the ASF dual-hosted git repository.

gboue pushed a change to branch MPMD-253
in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git.


  at c059ee5  [MPMD-253] PMD links to java Xref fail in aggregated report

This branch includes the following new commits:

 new c059ee5  [MPMD-253] PMD links to java Xref fail in aggregated report

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
gb...@apache.org.


[maven-pmd-plugin] 01/01: [MPMD-253] PMD links to java Xref fail in aggregated report

2018-02-25 Thread gboue
This is an automated email from the ASF dual-hosted git repository.

gboue pushed a commit to branch MPMD-253
in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git

commit c059ee5156e6e3201bd3e4c925a54411d668
Author: Guillaume Boué 
AuthorDate: Sun Feb 25 01:01:52 2018 +0100

[MPMD-253] PMD links to java Xref fail in aggregated report

Fix Xref link to a Java source in a module: don't use the file section
name but the file name for the link.
---
 .../invoker.properties | 18 ++
 .../MPMD-253-xref-link-multi-module/module/pom.xml | 31 +++
 .../module/src/main/java/app/App.java  | 35 
 src/it/MPMD-253-xref-link-multi-module/pom.xml | 65 ++
 .../src/main/config/pmd/rules.xml  | 26 +
 .../MPMD-253-xref-link-multi-module/verify.groovy  | 27 +
 .../maven/plugins/pmd/PmdReportGenerator.java  | 20 ---
 7 files changed, 213 insertions(+), 9 deletions(-)

diff --git a/src/it/MPMD-253-xref-link-multi-module/invoker.properties 
b/src/it/MPMD-253-xref-link-multi-module/invoker.properties
new file mode 100644
index 000..67f758a
--- /dev/null
+++ b/src/it/MPMD-253-xref-link-multi-module/invoker.properties
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+invoker.goals = clean site
\ No newline at end of file
diff --git a/src/it/MPMD-253-xref-link-multi-module/module/pom.xml 
b/src/it/MPMD-253-xref-link-multi-module/module/pom.xml
new file mode 100644
index 000..ddbb671
--- /dev/null
+++ b/src/it/MPMD-253-xref-link-multi-module/module/pom.xml
@@ -0,0 +1,31 @@
+
+
+
+
+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/maven-v4_0_0.xsd;>
+  4.0.0
+  
+org.apache.maven.plugins.pmd.it
+MPMD-253-xref-link-multi-module
+1.0-SNAPSHOT
+  
+  module
+
diff --git 
a/src/it/MPMD-253-xref-link-multi-module/module/src/main/java/app/App.java 
b/src/it/MPMD-253-xref-link-multi-module/module/src/main/java/app/App.java
new file mode 100644
index 000..7fd1a89
--- /dev/null
+++ b/src/it/MPMD-253-xref-link-multi-module/module/src/main/java/app/App.java
@@ -0,0 +1,35 @@
+package app;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Hello world!
+ *
+ */
+public class App
+{
+
+public static void main( String[] args )
+{
+System.out.println( "Hello World!" );
+return; // Unnecessary return.
+}
+
+}
\ No newline at end of file
diff --git a/src/it/MPMD-253-xref-link-multi-module/pom.xml 
b/src/it/MPMD-253-xref-link-multi-module/pom.xml
new file mode 100644
index 000..b0be09e
--- /dev/null
+++ b/src/it/MPMD-253-xref-link-multi-module/pom.xml
@@ -0,0 +1,65 @@
+
+
+
+
+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/maven-v4_0_0.xsd;>
+  4.0.0
+  org.apache.maven.plugins.pmd.it
+  MPMD-253-xref-link-multi-module
+  1.0-SNAPSHOT
+  pom
+  
+UTF-8
+  
+  Tests that Xref link points to correct module source file in 
aggregate report
+  
+module
+  
+  
+
+  
+org.apache.maven.plugins
+maven-site-plugin
+@sitePluginVersion@
+  
+
+  
+  
+   
+
+  org.apache.maven.plugins
+ 

[maven-pmd-plugin] branch master updated: Make IT runnable both on Windows and Linux.

2018-02-25 Thread gboue
This is an automated email from the ASF dual-hosted git repository.

gboue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new d79b0a2  Make IT runnable both on Windows and Linux.
d79b0a2 is described below

commit d79b0a2fdfd01e2415b9ba2119c76cf3bac01536
Author: Guillaume Boué 
AuthorDate: Sun Feb 25 01:11:19 2018 +0100

Make IT runnable both on Windows and Linux.
---
 src/it/MPMD-244-logging/verify.groovy | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/it/MPMD-244-logging/verify.groovy 
b/src/it/MPMD-244-logging/verify.groovy
index 1e906a6..459b2b9 100644
--- a/src/it/MPMD-244-logging/verify.groovy
+++ b/src/it/MPMD-244-logging/verify.groovy
@@ -21,8 +21,11 @@ File buildLog = new File( basedir, 'build.log' )
 assert buildLog.exists()
 assert buildLog.text.contains( "PMD processing errors" )
 assert buildLog.text.contains( "Error while parsing" )
-String currentDir = basedir.getCanonicalPath()
+
+String disabledPath = new File( basedir, 
'logging-disabled/src/main/java/BrokenFile.java' ).getCanonicalPath()
+String enabledPath = new File( basedir, 
'logging-enabled/src/main/java/BrokenFile.java' ).getCanonicalPath()
+
 // logging disabled: the pmd exception is only output through the processing 
error reporting (since MPMD-246)
-assert 1 == buildLog.text.count( "net.sourceforge.pmd.PMDException: Error 
while parsing ${currentDir}/logging-disabled/src/main/java/BrokenFile.java" )
+assert 1 == buildLog.text.count( "net.sourceforge.pmd.PMDException: Error 
while parsing ${disabledPath}" )
 // logging enabled: the pmd exception is output twice: through the processing 
error reporting (since MPMD-246) and through PMD's own logging
-assert 2 == buildLog.text.count( "net.sourceforge.pmd.PMDException: Error 
while parsing ${currentDir}/logging-enabled/src/main/java/BrokenFile.java" )
+assert 2 == buildLog.text.count( "net.sourceforge.pmd.PMDException: Error 
while parsing ${enabledPath}" )

-- 
To stop receiving notification emails like this one, please contact
gb...@apache.org.