maven git commit: [MNG-6112] Central repository in the 4.0.0 super POM should declare update policy 'never'.

2017-03-20 Thread schulte
Repository: maven
Updated Branches:
  refs/heads/MNG-6112 [created] 13adc1bc2


[MNG-6112] Central repository in the 4.0.0 super POM should declare update 
policy 'never'.


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

Branch: refs/heads/MNG-6112
Commit: 13adc1bc2b6d9fc3a62ec2389996726c2edce4d8
Parents: d54e6f9
Author: Christian Schulte 
Authored: Tue Mar 21 00:30:28 2017 +0100
Committer: Christian Schulte 
Committed: Tue Mar 21 00:30:28 2017 +0100

--
 .../main/java/org/apache/maven/bridge/MavenRepositorySystem.java | 4 ++--
 .../src/main/resources/org/apache/maven/model/pom-4.0.0.xml  | 3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/13adc1bc/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
--
diff --git 
a/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java 
b/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
index 9331710..509f302 100644
--- 
a/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
+++ 
b/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
@@ -573,8 +573,8 @@ public class MavenRepositorySystem
 throws Exception
 {
 return createRepository( RepositorySystem.DEFAULT_REMOTE_REPO_URL, 
RepositorySystem.DEFAULT_REMOTE_REPO_ID,
- true, 
ArtifactRepositoryPolicy.UPDATE_POLICY_DAILY, false,
- ArtifactRepositoryPolicy.UPDATE_POLICY_DAILY,
+ true, 
ArtifactRepositoryPolicy.UPDATE_POLICY_NEVER, false,
+ ArtifactRepositoryPolicy.UPDATE_POLICY_NEVER,
  ArtifactRepositoryPolicy.CHECKSUM_POLICY_WARN 
);
 }
 

http://git-wip-us.apache.org/repos/asf/maven/blob/13adc1bc/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
--
diff --git 
a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml 
b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
index 91492a9..9487a9a 100644
--- 
a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
+++ 
b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
@@ -32,6 +32,9 @@ under the License.
   
 false
   
+  
+never
+  
 
   
 



maven git commit: s/@since 3.5.0-alpha-2/@since 3.5.0/g

2017-03-20 Thread schulte
Repository: maven
Updated Branches:
  refs/heads/master fd29ddebf -> d54e6f91a


s/@since 3.5.0-alpha-2/@since 3.5.0/g


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

Branch: refs/heads/master
Commit: d54e6f91a8652cdda61a20f051f97f11d4c3c982
Parents: fd29dde
Author: Christian Schulte 
Authored: Tue Mar 21 00:21:43 2017 +0100
Committer: Christian Schulte 
Committed: Tue Mar 21 00:21:43 2017 +0100

--
 .../java/org/apache/maven/execution/ProjectDependencyGraph.java  | 2 +-
 .../org/apache/maven/graph/DefaultProjectDependencyGraph.java| 4 ++--
 .../org/apache/maven/graph/FilteredProjectDependencyGraph.java   | 2 +-
 .../java/org/apache/maven/project/ProjectModelResolverTest.java  | 2 +-
 .../java/org/apache/maven/model/resolution/ModelResolver.java| 2 +-
 .../maven/repository/internal/DefaultModelResolverTest.java  | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/d54e6f91/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
--
diff --git 
a/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
 
b/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
index d206d73..bbc8272 100644
--- 
a/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
+++ 
b/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
@@ -37,7 +37,7 @@ public interface ProjectDependencyGraph
  *
  * @return All collected projects.
  *
- * @since 3.5.0-alpha-2
+ * @since 3.5.0
  */
 List getAllProjects();
 

http://git-wip-us.apache.org/repos/asf/maven/blob/d54e6f91/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
--
diff --git 
a/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
 
b/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
index effab0b..73cadf6 100644
--- 
a/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
+++ 
b/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java
@@ -69,7 +69,7 @@ public class DefaultProjectDependencyGraph
  *
  * @throws DuplicateProjectException
  * @throws CycleDetectedException
- * @since 3.5.0-alpha-2
+ * @since 3.5.0
  */
 public DefaultProjectDependencyGraph( final List allProjects,
   final Collection 
projects )
@@ -81,7 +81,7 @@ public class DefaultProjectDependencyGraph
 }
 
 /**
- * @since 3.5.0-alpha-2
+ * @since 3.5.0
  */
 public List getAllProjects()
 {

http://git-wip-us.apache.org/repos/asf/maven/blob/d54e6f91/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
--
diff --git 
a/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
 
b/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
index ad3910d..c4f8e1a 100644
--- 
a/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
+++ 
b/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
@@ -65,7 +65,7 @@ class FilteredProjectDependencyGraph
 }
 
 /**
- * @since 3.5.0-alpha-2
+ * @since 3.5.0
  */
 public List getAllProjects()
 {

http://git-wip-us.apache.org/repos/asf/maven/blob/d54e6f91/maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java
--
diff --git 
a/maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java
 
b/maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java
index c21796b..6302a82 100644
--- 
a/maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java
+++ 
b/maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java
@@ -44,7 +44,7 @@ import static org.codehaus.plexus.PlexusTestCase.getBasedir;
  * Test cases for the project {@code ModelResolver} implementation.
  *
  * @author Christian Schulte
- * @since 3.5.0-alpha-2
+ * @since 3.5.0
  */
 public class ProjectModelResolverTest extends AbstractMavenProjectTestCase
 {


maven git commit: [MNG-6113] Rename the 'Central Repository' to 'Maven Central Repository' in the 4.0.0 super POM.

2017-03-20 Thread schulte
Repository: maven
Updated Branches:
  refs/heads/MNG-6113 [created] f668824df


[MNG-6113] Rename the 'Central Repository' to 'Maven Central Repository' in the 
4.0.0 super POM.


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

Branch: refs/heads/MNG-6113
Commit: f668824df861e06ad7fb85f79ae549d80bef387c
Parents: 13adc1b
Author: Christian Schulte 
Authored: Tue Mar 21 00:31:53 2017 +0100
Committer: Christian Schulte 
Committed: Tue Mar 21 00:31:53 2017 +0100

--
 .../src/main/resources/org/apache/maven/model/pom-4.0.0.xml  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/f668824d/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
--
diff --git 
a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml 
b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
index 9487a9a..c9770b0 100644
--- 
a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
+++ 
b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
@@ -26,7 +26,7 @@ under the License.
   
 
   central
-  Central Repository
+  Maven Central Repository
   https://repo.maven.apache.org/maven2
   default
   
@@ -41,7 +41,7 @@ under the License.
   
 
   central
-  Central Repository
+  Maven Central Repository
   https://repo.maven.apache.org/maven2
   default
   



svn commit: r1787841 - in /maven/site/trunk/content/markdown: docs/3.5.0-beta-1/release-notes.md maven-ci-friendly.md

2017-03-20 Thread khmarbaise
Author: khmarbaise
Date: Mon Mar 20 20:19:37 2017
New Revision: 1787841

URL: http://svn.apache.org/viewvc?rev=1787841=rev
Log:
Added maven ci friendly documentation

Added:
maven/site/trunk/content/markdown/maven-ci-friendly.md
Modified:
maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md

Modified: maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md?rev=1787841=1787840=1787841=diff
==
--- maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md 
(original)
+++ maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md Mon 
Mar 20 20:19:37 2017
@@ -132,7 +132,7 @@ Thank you also for your time and feedbac
has been fixed [MNG-6057], [MNG-6090] and [MNG-5895]. It is very important 
to
know if you are using the previously named properties for a version in your 
pom you have to use [flatten-maven-plugin] if you like to do an `mvn 
install` 
-   or `mvn deploy`.
+   or `mvn deploy` more details can be found at [Maven CI 
Friendly](/maven-ci-friendly.html).
 
  * The two known issues from 3.5.0-alpha-1 have been fixed [MNG-6177], 
[MNG-6115]
 

Added: maven/site/trunk/content/markdown/maven-ci-friendly.md
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/maven-ci-friendly.md?rev=1787841=auto
==
--- maven/site/trunk/content/markdown/maven-ci-friendly.md (added)
+++ maven/site/trunk/content/markdown/maven-ci-friendly.md Mon Mar 20 20:19:37 
2017
@@ -0,0 +1,188 @@
+# Maven CI Friendly Versions
+
+Starting with Maven 3.5.0-beta-1 you can use the `${revision}`, `${sha1}` 
+and/or `${changelist}` as placeholders for the version in your pom file. 
+
+## Single Project Setup
+
+This can look like this:
+
+```xml
+
+  4.0.0
+  
+org.apache
+apache
+18
+  
+  org.apache.maven.ci
+  ci-parent
+  First CI Friendly
+  ${revision}
+  ...
+
+```
+
+  This is of course a simple situation where we use only `${revision}` for 
brevity
+  to show the general course.
+
+
+  Based on the above pom you can build your project using:
+
+```
+mvn clean package
+```
+
+  But wait there is a problem? Which version will the artifacts have? So you 
need
+  to define the version for your artifacts. The first possibility is to use 
the command
+  line like this:
+
+```
+mvn -Drevision=1.0.0-SNAPSHOT clean package
+```
+
+  This wil become cumbersome over the time. So the other solution for this is 
+  to simply use a property inside the pom file which looks like this:
+
+```xml
+
+  4.0.0
+  
+org.apache
+apache
+18
+  
+  org.apache.maven.ci
+  ci-parent
+  First CI Friendly
+  ${revision}
+  ...
+  
+1.0.0-SNAPSHOT
+  
+
+```
+
+  So now you can simply call Maven as usual like `mvn clean package`.
+
+  You can of course change the version via the command line like this:
+
+```
+mvn -Drevision=2.0.0-SNAPSHOT clean package
+```
+ 
+  Of cource you can use the `.mvn/maven.config` file for this.
+
+## Multi Module Setup
+
+  So now let us take a look into a situation where we have a multi module
+  build. We have a parent pom and one or more childs.
+  The parent pom will look like this:
+
+```xml
+
+  4.0.0
+  
+org.apache
+apache
+18
+  
+  org.apache.maven.ci
+  ci-parent
+  First CI Friendly
+  ${revision}
+  ...
+  
+1.0.0-SNAPSHOT
+  
+  
+child1
+..
+  
+
+```
+
+  The child will look like this:
+
+```xml
+
+  4.0.0
+  
+org.apache.maven.ci
+ci-parent
+${revision}
+  
+  org.apache.maven.ci
+  ci-child
+   ...
+
+```
+
+  A multi module build can of course build the same way as the single project 
setup. You should
+  define the version either via property in the parent or use the 
`.mvn/maven.config` file.
+
+
+## Install / Deploy
+
+  If you like to install or deploy artifacts by using the above setup you 
**have to use**
+  the [flatten-maven-plugin][flatten-maven-plugin] otherwise you will 
install/deploy artifacts 
+  in your repository which will not be cosumable by older Maven versions. Such 
kind of setup
+  will look like this:
+
+
+```xml
+
+  4.0.0
+  
+org.apache
+apache
+18
+  
+  org.apache.maven.ci
+  ci-parent
+  First CI Friendly
+  ${revision}
+  ...
+  
+1.0.0-SNAPSHOT
+  
+
+ 
+  
+
+  org.codehaus.mojo
+  flatten-maven-plugin
+  1.0.0
+  
+true
+  
+  
+
+  flatten
+  process-resources
+  
+flatten
+  
+
+
+  flatten.clean
+  clean
+  
+clean
+  
+
+  
+
+  
+  
+  
+child1
+..
+  
+
+```
+
+
+
+[flatten-maven-plugin]: http://www.mojohaus.org/flatten-maven-plugin/ 
+




svn commit: r1787851 - /maven/release/trunk/maven-release-plugin/pom.xml

2017-03-20 Thread rfscholte
Author: rfscholte
Date: Mon Mar 20 21:34:37 2017
New Revision: 1787851

URL: http://svn.apache.org/viewvc?rev=1787851=rev
Log:
MRELEASE-979: Partial revert, which disabled most ITs

Modified:
maven/release/trunk/maven-release-plugin/pom.xml

Modified: maven/release/trunk/maven-release-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/pom.xml?rev=1787851=1787850=1787851=diff
==
--- maven/release/trunk/maven-release-plugin/pom.xml (original)
+++ maven/release/trunk/maven-release-plugin/pom.xml Mon Mar 20 21:34:37 2017
@@ -208,6 +208,7 @@
   
 org.apache.maven.plugins
 maven-invoker-plugin
+2.0.0
 
   
 integration-test-prepare
@@ -216,42 +217,39 @@
 setup/*/pom.xml
   
   
-X
+projects/prepare/*/*pom.xml
+
projects/prepare/flat-multi-module/parent-project/pom.xml
   
-
-
-
-
-
-
-
-
-
-
-
-
+  
+
projects/prepare/MRELEASE-966/pom.xml
+  
+  
+clean
+
${project.groupId}:${project.artifactId}:${project.version}:clean
+
${project.groupId}:${project.artifactId}:${project.version}:prepare
+  
 
 
   install
   run
 
   
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+  
+integration-test-prepare-with-pom
+
+  
+
projects/prepare-with-pom/*/*pom.xml
+  
+  
+clean
+
${project.groupId}:${project.artifactId}:${project.version}:clean
+
${project.groupId}:${project.artifactId}:${project.version}:prepare-with-pom
+  
+
+
+  run
+
+  
   
 integration-test-branch
 
@@ -268,39 +266,39 @@
   run
 
   
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+  
+integration-test-perform
+
+  
+projects/perform/*/pom.xml
+  
+  
+clean
+
${project.groupId}:${project.artifactId}:${project.version}:clean
+
${project.groupId}:${project.artifactId}:${project.version}:prepare
+
${project.groupId}:${project.artifactId}:${project.version}:perform
+  
+
+
+  run
+
+  
+  
+integration-test-update-versions
+
+  
+projects/update-versions/*/pom.xml
+  
+  
+clean
+
${project.groupId}:${project.artifactId}:${project.version}:clean
+
${project.groupId}:${project.artifactId}:${project.version}:update-versions
+  
+
+
+  run
+
+  

   
 




maven git commit: [MNG-6190] maven-resolver-provider's DefaultArtifactDescriptorReader has mismatched constructor and initService methods

2017-03-20 Thread schulte
Repository: maven
Updated Branches:
  refs/heads/MNG-6190 [created] f5e477e24


[MNG-6190] maven-resolver-provider's DefaultArtifactDescriptorReader has 
mismatched constructor and initService methods


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

Branch: refs/heads/MNG-6190
Commit: f5e477e2497368ee7817d475421944491a7ba23c
Parents: d54e6f9
Author: Christian Schulte 
Authored: Tue Mar 21 04:06:02 2017 +0100
Committer: Christian Schulte 
Committed: Tue Mar 21 04:06:02 2017 +0100

--
 .../internal/DefaultArtifactDescriptorReader.java   | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/f5e477e2/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
--
diff --git 
a/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
 
b/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
index 1df1c12..82e1284 100644
--- 
a/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
+++ 
b/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
@@ -111,8 +111,9 @@ public class DefaultArtifactDescriptorReader
 
 @Inject
 DefaultArtifactDescriptorReader( RemoteRepositoryManager 
remoteRepositoryManager, VersionResolver versionResolver,
- ArtifactResolver artifactResolver, 
ModelBuilder modelBuilder,
- RepositoryEventDispatcher 
repositoryEventDispatcher, LoggerFactory loggerFactory )
+ VersionRangeResolver 
versionRangeResolver, ArtifactResolver artifactResolver,
+ ModelBuilder modelBuilder, 
RepositoryEventDispatcher repositoryEventDispatcher,
+ LoggerFactory loggerFactory )
 {
 setRemoteRepositoryManager( remoteRepositoryManager );
 setVersionResolver( versionResolver );
@@ -124,17 +125,17 @@ public class DefaultArtifactDescriptorReader
 
 public void initService( ServiceLocator locator )
 {
-setLoggerFactory( locator.getService( LoggerFactory.class ) );
 setRemoteRepositoryManager( locator.getService( 
RemoteRepositoryManager.class ) );
 setVersionResolver( locator.getService( VersionResolver.class ) );
 setVersionRangeResolver( locator.getService( 
VersionRangeResolver.class ) );
 setArtifactResolver( locator.getService( ArtifactResolver.class ) );
-setRepositoryEventDispatcher( locator.getService( 
RepositoryEventDispatcher.class ) );
 modelBuilder = locator.getService( ModelBuilder.class );
 if ( modelBuilder == null )
 {
 setModelBuilder( new DefaultModelBuilderFactory().newInstance() );
 }
+setRepositoryEventDispatcher( locator.getService( 
RepositoryEventDispatcher.class ) );
+setLoggerFactory( locator.getService( LoggerFactory.class ) );
 }
 
 public DefaultArtifactDescriptorReader setLoggerFactory( LoggerFactory 
loggerFactory )



maven-archetype git commit: ARCHETYPE-520: Following mirror configuration from settings.xml for downloading archetype metadata

2017-03-20 Thread rfscholte
Repository: maven-archetype
Updated Branches:
  refs/heads/ARCHETYPE-520 [created] be052022c


ARCHETYPE-520: Following mirror configuration from settings.xml for downloading 
archetype metadata

MRM based integration test


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

Branch: refs/heads/ARCHETYPE-520
Commit: be052022c053e887aa964060255231e579e15d56
Parents: 2ac48e1
Author: rfscholte 
Authored: Mon Mar 20 20:07:47 2017 +0100
Committer: rfscholte 
Committed: Mon Mar 20 20:07:47 2017 +0100

--
 maven-archetype-plugin/pom.xml  |  3 +-
 .../src/it/mrm/repository/archetype-catalog.xml | 35 
 .../META-INF/maven/archetype-metadata.xml   | 30 +
 .../archetype-resources/pom.xml | 29 
 .../it/mrm/repository/custom-archetype-1.0.pom  | 29 
 .../ARCHETYPE-520_mirror/invoker.properties | 19 +++
 .../ARCHETYPE-520_mirror/test.properties| 26 +++
 7 files changed, 170 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/be052022/maven-archetype-plugin/pom.xml
--
diff --git a/maven-archetype-plugin/pom.xml b/maven-archetype-plugin/pom.xml
index d059eb7..ee84351 100644
--- a/maven-archetype-plugin/pom.xml
+++ b/maven-archetype-plugin/pom.xml
@@ -178,7 +178,7 @@
   
 org.codehaus.mojo
 mrm-maven-plugin
-1.0.0
+1.0.2-SNAPSHOT
 
   
 
@@ -191,6 +191,7 @@
   
 
   src/it/mrm/repository
+  target/mock-repo
 
 
   

http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/be052022/maven-archetype-plugin/src/it/mrm/repository/archetype-catalog.xml
--
diff --git a/maven-archetype-plugin/src/it/mrm/repository/archetype-catalog.xml 
b/maven-archetype-plugin/src/it/mrm/repository/archetype-catalog.xml
new file mode 100644
index 000..ac069a6
--- /dev/null
+++ b/maven-archetype-plugin/src/it/mrm/repository/archetype-catalog.xml
@@ -0,0 +1,35 @@
+
+
+
+
+http://maven.apache.org/plugins/maven-archetype-plugin/archetype-catalog/1.0.0
 http://maven.apache.org/xsd/archetype-catalog-1.0.0.xsd;
+  
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-catalog/1.0.0;
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
+
+  
+
+  org.apache.maven.archetypes.its
+  custom-archetype
+  1.0
+  A custom archetype only available or ITs
+
+  
+
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/be052022/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/META-INF/maven/archetype-metadata.xml
--
diff --git 
a/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/META-INF/maven/archetype-metadata.xml
 
b/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/META-INF/maven/archetype-metadata.xml
new file mode 100644
index 000..d504e4e
--- /dev/null
+++ 
b/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/META-INF/maven/archetype-metadata.xml
@@ -0,0 +1,30 @@
+
+
+
+
+  
+
+  src/main/java
+  
+**/*.java
+  
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/be052022/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/archetype-resources/pom.xml
--
diff --git 
a/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/archetype-resources/pom.xml
 
b/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/archetype-resources/pom.xml
new file mode 100644
index 000..43011ed
--- /dev/null
+++ 
b/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.jar/archetype-resources/pom.xml
@@ -0,0 +1,29 @@
+
+
+http://maven.apache.org/POM/4.0.0;
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
+  4.0.0
+
+  ${groupId}
+  ${artifactId}
+  ${version}
+
+

http://git-wip-us.apache.org/repos/asf/maven-archetype/blob/be052022/maven-archetype-plugin/src/it/mrm/repository/custom-archetype-1.0.pom

maven git commit: checking GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] dc7e2c626


checking GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: dc7e2c6262212ab540a669874fb1fed85eab11db
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 09:06:17 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/dc7e2c62/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 (Windows)', type: 

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] dc7e2c626


[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 1e9e51026


[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] dc7e2c626


maven git commit: checking GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] dc7e2c626


checking GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: dc7e2c6262212ab540a669874fb1fed85eab11db
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 09:06:17 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/dc7e2c62/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 (Windows)', type: 

maven git commit: Really long commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 1e9e51026


Really long commit message to check GitPubSub notifications for INFRA-13667

```
Mar 20, 2017 9:46:52 AM org.apache.jenkins.gitpubsub.GitPubSubPoll$JsonHandler 
onThrowable
INFO: Connection timeout
java.util.concurrent.TimeoutException: Request reached idle time out of 6 
ms after 120263 ms
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ReaperFuture.expire(NettyAsyncHttpProvider.java:1782)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ReaperFuture.run(NettyAsyncHttpProvider.java:1807)
at 
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)

Mar 20, 2017 9:47:01 AM org.apache.jenkins.gitpubsub.GitPubSubPoll$JsonHandler 
onThrowable
WARNING: Unexpected exception
java.net.ConnectException: http://gitpubsub-wip.apache.org:2069/json/*
at 
com.ning.http.client.providers.netty.NettyConnectListener.operationComplete(NettyConnectListener.java:104)
at 
org.jboss.netty.channel.DefaultChannelFuture.notifyListener(DefaultChannelFuture.java:427)
at 
org.jboss.netty.channel.DefaultChannelFuture.addListener(DefaultChannelFuture.java:145)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.doConnect(NettyAsyncHttpProvider.java:1077)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.execute(NettyAsyncHttpProvider.java:901)
at 
com.ning.http.client.AsyncHttpClient.executeRequest(AsyncHttpClient.java:521)
at 
org.apache.jenkins.gitpubsub.GitPubSubPoll.execute(GitPubSubPoll.java:120)
at hudson.model.AsyncPeriodicWork$1.run(AsyncPeriodicWork.java:53)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.nio.channels.UnresolvedAddressException
at sun.nio.ch.Net.checkAddress(Net.java:101)
at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:622)
at 
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
at 
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
at 
org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
at 
org.jboss.netty.handler.codec.http.HttpClientCodec.handleDownstream(HttpClientCodec.java:97)
at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.handleDownstream(ChunkedWriteHandler.java:109)
at org.jboss.netty.channel.Channels.connect(Channels.java:634)
at 
org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:207)
at 
org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
at 
org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.doConnect(NettyAsyncHttpProvider.java:1038)
... 5 more

Mar 20, 2017 9:47:11 AM org.apache.jenkins.gitpubsub.GitPubSubPoll$JsonHandler 
onThrowable
WARNING: Unexpected exception
java.net.ConnectException: http://gitpubsub-wip.apache.org:2069/json/*
at 
com.ning.http.client.providers.netty.NettyConnectListener.operationComplete(NettyConnectListener.java:104)
at 
org.jboss.netty.channel.DefaultChannelFuture.notifyListener(DefaultChannelFuture.java:427)
at 
org.jboss.netty.channel.DefaultChannelFuture.addListener(DefaultChannelFuture.java:145)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.doConnect(NettyAsyncHttpProvider.java:1077)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.execute(NettyAsyncHttpProvider.java:901)
at 
com.ning.http.client.AsyncHttpClient.executeRequest(AsyncHttpClient.java:521)
at 
org.apache.jenkins.gitpubsub.GitPubSubPoll.execute(GitPubSubPoll.java:120)
at hudson.model.AsyncPeriodicWork$1.run(AsyncPeriodicWork.java:53)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.nio.channels.UnresolvedAddressException
at sun.nio.ch.Net.checkAddress(Net.java:101)
at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:622)
at 
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
at 

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 1e9e51026


maven git commit: Really long commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 1e9e51026


Really long commit message to check GitPubSub notifications for INFRA-13667

```
Mar 20, 2017 9:46:52 AM org.apache.jenkins.gitpubsub.GitPubSubPoll$JsonHandler 
onThrowable
INFO: Connection timeout
java.util.concurrent.TimeoutException: Request reached idle time out of 6 
ms after 120263 ms
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ReaperFuture.expire(NettyAsyncHttpProvider.java:1782)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ReaperFuture.run(NettyAsyncHttpProvider.java:1807)
at 
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)

Mar 20, 2017 9:47:01 AM org.apache.jenkins.gitpubsub.GitPubSubPoll$JsonHandler 
onThrowable
WARNING: Unexpected exception
java.net.ConnectException: http://gitpubsub-wip.apache.org:2069/json/*
at 
com.ning.http.client.providers.netty.NettyConnectListener.operationComplete(NettyConnectListener.java:104)
at 
org.jboss.netty.channel.DefaultChannelFuture.notifyListener(DefaultChannelFuture.java:427)
at 
org.jboss.netty.channel.DefaultChannelFuture.addListener(DefaultChannelFuture.java:145)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.doConnect(NettyAsyncHttpProvider.java:1077)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.execute(NettyAsyncHttpProvider.java:901)
at 
com.ning.http.client.AsyncHttpClient.executeRequest(AsyncHttpClient.java:521)
at 
org.apache.jenkins.gitpubsub.GitPubSubPoll.execute(GitPubSubPoll.java:120)
at hudson.model.AsyncPeriodicWork$1.run(AsyncPeriodicWork.java:53)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.nio.channels.UnresolvedAddressException
at sun.nio.ch.Net.checkAddress(Net.java:101)
at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:622)
at 
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
at 
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
at 
org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
at 
org.jboss.netty.handler.codec.http.HttpClientCodec.handleDownstream(HttpClientCodec.java:97)
at 
org.jboss.netty.handler.stream.ChunkedWriteHandler.handleDownstream(ChunkedWriteHandler.java:109)
at org.jboss.netty.channel.Channels.connect(Channels.java:634)
at 
org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:207)
at 
org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
at 
org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.doConnect(NettyAsyncHttpProvider.java:1038)
... 5 more

Mar 20, 2017 9:47:11 AM org.apache.jenkins.gitpubsub.GitPubSubPoll$JsonHandler 
onThrowable
WARNING: Unexpected exception
java.net.ConnectException: http://gitpubsub-wip.apache.org:2069/json/*
at 
com.ning.http.client.providers.netty.NettyConnectListener.operationComplete(NettyConnectListener.java:104)
at 
org.jboss.netty.channel.DefaultChannelFuture.notifyListener(DefaultChannelFuture.java:427)
at 
org.jboss.netty.channel.DefaultChannelFuture.addListener(DefaultChannelFuture.java:145)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.doConnect(NettyAsyncHttpProvider.java:1077)
at 
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.execute(NettyAsyncHttpProvider.java:901)
at 
com.ning.http.client.AsyncHttpClient.executeRequest(AsyncHttpClient.java:521)
at 
org.apache.jenkins.gitpubsub.GitPubSubPoll.execute(GitPubSubPoll.java:120)
at hudson.model.AsyncPeriodicWork$1.run(AsyncPeriodicWork.java:53)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.nio.channels.UnresolvedAddressException
at sun.nio.ch.Net.checkAddress(Net.java:101)
at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:622)
at 
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
at 

maven git commit: checking GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] dc7e2c626


checking GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: dc7e2c6262212ab540a669874fb1fed85eab11db
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 09:06:17 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/dc7e2c62/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 (Windows)', type: 

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] dc7e2c626


maven git commit: checking GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] dc7e2c626


checking GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: dc7e2c6262212ab540a669874fb1fed85eab11db
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 09:06:17 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/dc7e2c62/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 (Windows)', type: 

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] dc7e2c626


[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 119e365a6


maven git commit: short commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 119e365a6


short commit message to check GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: 119e365a621f38903aad4d90570a2e26bb51156a
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 10:19:38 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/119e365a/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 

maven git commit: minor change

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty 119e365a6 -> af78912f9


minor change


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

Branch: refs/heads/empty
Commit: af78912f96852109faf3b41822a16ee28916ca58
Parents: 119e365
Author: Stephen Connolly 
Authored: Mon Mar 20 14:36:20 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 14:36:20 2017 +

--
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/af78912f/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 9111e01..1f4d435 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -20,3 +20,4 @@
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
 
+



[3/3] maven git commit: minor change

2017-03-20 Thread stephenc
minor change


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

Branch: refs/heads/empty
Commit: 71135c23a5820567a29c0068823a07a959c920de
Parents: af78912
Author: Stephen Connolly 
Authored: Mon Mar 20 14:38:13 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 14:38:13 2017 +

--
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/71135c23/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 1f4d435..5057de1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,3 +21,4 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: 
'5', numToKeepStr: e
 
 
 
+



[2/3] maven git commit: minor change

2017-03-20 Thread stephenc
minor change


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

Branch: refs/heads/empty
Commit: af78912f96852109faf3b41822a16ee28916ca58
Parents: 119e365
Author: Stephen Connolly 
Authored: Mon Mar 20 14:36:20 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 14:36:20 2017 +

--
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/af78912f/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 9111e01..1f4d435 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -20,3 +20,4 @@
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
 
+



[1/3] maven git commit: short commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 71135c23a


short commit message to check GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: 119e365a621f38903aad4d90570a2e26bb51156a
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 10:19:38 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/119e365a/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 71135c23a


maven git commit: short commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 119e365a6


short commit message to check GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: 119e365a621f38903aad4d90570a2e26bb51156a
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 10:19:38 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/119e365a/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 

maven git commit: minor change

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty af78912f9 -> 71135c23a


minor change


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

Branch: refs/heads/empty
Commit: 71135c23a5820567a29c0068823a07a959c920de
Parents: af78912
Author: Stephen Connolly 
Authored: Mon Mar 20 14:38:13 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 14:38:13 2017 +

--
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/71135c23/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 1f4d435..5057de1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,3 +21,4 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: 
'5', numToKeepStr: e
 
 
 
+



[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 71135c23a


maven git commit: short commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 119e365a6


short commit message to check GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: 119e365a621f38903aad4d90570a2e26bb51156a
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 10:19:38 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/119e365a/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 119e365a6


[2/2] maven git commit: [MNG-6069] Have to treat -D as taking a single argument or else any property with = in the name or = in the value will be mangled

2017-03-20 Thread stephenc
[MNG-6069] Have to treat -D as taking a single argument or else any property 
with = in the name or = in the value will be mangled


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

Branch: refs/heads/MNG-6069
Commit: 0cafb4c042da840d038d327b634619c9f26b6728
Parents: 04e67fd
Author: Stephen Connolly 
Authored: Mon Mar 20 15:09:38 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 15:09:38 2017 +

--
 .../src/main/java/org/apache/maven/cli/CLIManager.java|  2 +-
 .../src/main/java/org/apache/maven/cli/MavenCli.java  | 10 +-
 2 files changed, 2 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/0cafb4c0/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
--
diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java 
b/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
index 774dd0d..a474895 100644
--- a/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
+++ b/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
@@ -109,7 +109,7 @@ public class CLIManager
 options = new Options();
 options.addOption( Option.builder( HELP ).longOpt( "help" ).desc( 
"Display help information" ).build() );
 options.addOption( Option.builder( ALTERNATE_POM_FILE ).longOpt( 
"file" ).hasArg().desc( "Force the use of an alternate POM file (or directory 
with pom.xml)" ).build() );
-options.addOption( Option.builder( SET_SYSTEM_PROPERTY ).longOpt( 
"define" ).hasArgs().valueSeparator().desc( "Define a system property" 
).build() );
+options.addOption( Option.builder( SET_SYSTEM_PROPERTY ).longOpt( 
"define" ).hasArg().desc( "Define a system property" ).build() );
 options.addOption( Option.builder( OFFLINE ).longOpt( "offline" 
).desc( "Work offline" ).build() );
 options.addOption( Option.builder( VERSION ).longOpt( "version" 
).desc( "Display version information" ).build() );
 options.addOption( Option.builder( QUIET ).longOpt( "quiet" ).desc( 
"Quiet output - only show errors" ).build() );

http://git-wip-us.apache.org/repos/asf/maven/blob/0cafb4c0/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
--
diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java 
b/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
index f9eb17e..694f694 100644
--- a/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
+++ b/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
@@ -1671,15 +1671,7 @@ public class MavenCli
 {
 if ( CLIManager.SET_SYSTEM_PROPERTY.equals( opt.getOpt() ) )
 {
-String[] values = opt.getValues();
-if ( values.length == 1 )
-{
-setCliProperty( values[0], userProperties );
-}
-else
-{
-setCliProperty( values[0] + "=" + values[1], 
userProperties );
-}
+setCliProperty( opt.getValue(), userProperties );
 }
 }
 



[1/2] maven git commit: [MNG-6069] Fix handling of -emp and -ep optional argument

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/MNG-6069 fe6d51884 -> 0cafb4c04


[MNG-6069] Fix handling of -emp and -ep optional argument


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

Branch: refs/heads/MNG-6069
Commit: 04e67fde93959379eddcd8d17a129bd13e8e159b
Parents: fe6d518
Author: Stephen Connolly 
Authored: Mon Mar 20 15:01:03 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 15:01:03 2017 +

--
 .../src/main/java/org/apache/maven/cli/CLIManager.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/04e67fde/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
--
diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java 
b/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
index 20376d9..774dd0d 100644
--- a/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
+++ b/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
@@ -135,8 +135,8 @@ public class CLIManager
 options.addOption( Option.builder( ALSO_MAKE_DEPENDENTS ).longOpt( 
"also-make-dependents" ).desc( "If project list is specified, also build 
projects that depend on projects on the list" ).build() );
 options.addOption( Option.builder( LOG_FILE ).longOpt( "log-file" 
).hasArg().desc( "Log file where all build output will go" ).build() );
 options.addOption( Option.builder( SHOW_VERSION ).longOpt( 
"show-version" ).desc( "Display version information WITHOUT stopping build" 
).build() );
-options.addOption( Option.builder( ENCRYPT_MASTER_PASSWORD ).longOpt( 
"encrypt-master-password" ).optionalArg( true ).desc( "Encrypt master security 
password" ).build() );
-options.addOption( Option.builder( ENCRYPT_PASSWORD ).longOpt( 
"encrypt-password" ).optionalArg( true ).desc( "Encrypt server password" 
).build() );
+options.addOption( Option.builder( ENCRYPT_MASTER_PASSWORD ).longOpt( 
"encrypt-master-password" ).numberOfArgs( 1 ).argName( "password" 
).optionalArg( true ).desc( "Encrypt master security password" ).build() );
+options.addOption( Option.builder( ENCRYPT_PASSWORD ).longOpt( 
"encrypt-password" ).numberOfArgs( 1 ).argName( "password" ).optionalArg( true 
).desc( "Encrypt server password" ).build() );
 options.addOption( Option.builder( THREADS ).longOpt( "threads" 
).hasArg().desc( "Thread count, for instance 2.0C where C is core multiplied" 
).build() );
 options.addOption( Option.builder( LEGACY_LOCAL_REPOSITORY ).longOpt( 
"legacy-local-repository" ).desc( "Use Maven 2 Legacy Local Repository 
behaviour, ie no use of _remote.repositories. Can also be activated by using 
-Dmaven.legacyLocalRepo=true" ).build() );
 options.addOption( Option.builder( BUILDER ).longOpt( "builder" 
).hasArg().desc( "The id of the build strategy to use" ).build() );



[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [deleted] 458de9434


maven git commit: a tweak

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty 71135c23a -> 458de9434


a tweak


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

Branch: refs/heads/empty
Commit: 458de9434d722375714d485ab7a4ee169e365e5f
Parents: 71135c2
Author: Stephen Connolly 
Authored: Mon Mar 20 15:42:42 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 15:42:42 2017 +

--
 Jenkinsfile | 2 --
 1 file changed, 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/458de943/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 5057de1..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -20,5 +20,3 @@
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
 
-
-



[2/3] maven git commit: minor change

2017-03-20 Thread stephenc
minor change


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

Branch: refs/heads/empty
Commit: af78912f96852109faf3b41822a16ee28916ca58
Parents: 119e365
Author: Stephen Connolly 
Authored: Mon Mar 20 14:36:20 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 14:36:20 2017 +

--
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/af78912f/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 9111e01..1f4d435 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -20,3 +20,4 @@
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
 
+



[1/3] maven git commit: short commit message to check GitPubSub notifications for INFRA-13667

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/empty [created] 71135c23a


short commit message to check GitPubSub notifications for INFRA-13667


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

Branch: refs/heads/empty
Commit: 119e365a621f38903aad4d90570a2e26bb51156a
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 09:06:17 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 10:19:38 2017 +

--
 Jenkinsfile | 126 ---
 1 file changed, 126 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/119e365a/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ac2644..9111e01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,130 +19,4 @@
 
 properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: 
env.BRANCH_NAME=='master'?'10':'5'))])
 
-def tests
-
-try {
-node('ubuntu') {
-stage 'Checkout'
-def MAVEN_BUILD=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving build and unit tests using Maven $MAVEN_BUILD"
-def JAVA7_HOME=tool name: 'JDK 1.7 (latest)', type: 'hudson.model.JDK'
-echo "Running build and unit tests with Java $JAVA7_HOME"
-dir('build') {
-checkout scm
-def WORK_DIR=pwd()
-stage 'Build / Unit Test'
-withEnv(["PATH+MAVEN=$MAVEN_BUILD/bin","PATH+JDK=$JAVA7_HOME/bin"]) {
-sh "mvn clean verify -B -U -e -fae -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/.repository"
-}
-dir ('apache-maven/target') {
-sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
-stash includes: 'apache-maven-dist.zip', name: 'dist'
-}
-junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
-tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', 
excludes: '', gitTool: 'Default', id: '_', ignoreOnPushNotifications: false, 
includes: '*', remote: 
'https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git'], 
targets: [BRANCH_NAME, 'master']
-}
-}
-
-stage 'Integration Test'
-parallel linuxJava7:{
-node('ubuntu') {
-def MAVEN_NIX_J7=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J7"
-def JAVA_NIX_J7=tool name: 'JDK 1.7 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J7"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-},linuxJava8: {
-node('ubuntu') {
-def MAVEN_NIX_J8=tool name: 'Maven 3.3.9', type: 
'hudson.tasks.Maven$MavenInstallation'
-echo "Driving integration tests using Maven $MAVEN_NIX_J8"
-def JAVA_NIX_J8=tool name: 'JDK 1.8 (latest)', type: 
'hudson.model.JDK'
-echo "Running integration tests with Java $JAVA_NIX_J8"
-dir('test') {
-def WORK_DIR=pwd()
-checkout tests
-sh "rm -rvf $WORK_DIR/apache-maven-dist.zip 
$WORK_DIR/it-local-repo"
-unstash 'dist'
-
withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
-sh "mvn clean install -Prun-its -B -U -V 
-Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo 
-DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
-}
-junit allowEmptyResults: true, 
testResults:'core-it-support/**/target/*-reports/*.xml,core-it-suite/target/*-reports/*.xml'
-deleteDir() // clean up after ourselves to reduce disk space
-}
-}
-}, winJava7: {
-node('Windows') {
-def MAVEN_WIN_J7=tool name: 'Maven 3.3.9 

[3/3] maven git commit: minor change

2017-03-20 Thread stephenc
minor change


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

Branch: refs/heads/empty
Commit: 71135c23a5820567a29c0068823a07a959c920de
Parents: af78912
Author: Stephen Connolly 
Authored: Mon Mar 20 14:38:13 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 14:38:13 2017 +

--
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/71135c23/Jenkinsfile
--
diff --git a/Jenkinsfile b/Jenkinsfile
index 1f4d435..5057de1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,3 +21,4 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: 
'5', numToKeepStr: e
 
 
 
+



maven git commit: [maven-release-plugin] prepare release maven-3.5.0-beta-1

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/master 68e38e508 -> 214540c2a


[maven-release-plugin] prepare release maven-3.5.0-beta-1


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

Branch: refs/heads/master
Commit: 214540c2ae5431645bb927d6dc5498ebafc27359
Parents: 68e38e50
Author: Stephen Connolly 
Authored: Mon Mar 20 16:55:36 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 16:55:36 2017 +

--
 apache-maven/pom.xml  | 2 +-
 maven-artifact/pom.xml| 2 +-
 maven-builder-support/pom.xml | 2 +-
 maven-compat/pom.xml  | 2 +-
 maven-core/pom.xml| 2 +-
 maven-embedder/pom.xml| 2 +-
 maven-model-builder/pom.xml   | 2 +-
 maven-model/pom.xml   | 2 +-
 maven-plugin-api/pom.xml  | 2 +-
 maven-repository-metadata/pom.xml | 2 +-
 maven-resolver-provider/pom.xml   | 2 +-
 maven-settings-builder/pom.xml| 2 +-
 maven-settings/pom.xml| 2 +-
 maven-slf4j-provider/pom.xml  | 2 +-
 pom.xml   | 4 ++--
 15 files changed, 16 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/apache-maven/pom.xml
--
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index a528ddb..7bf2dd2 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   apache-maven

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-artifact/pom.xml
--
diff --git a/maven-artifact/pom.xml b/maven-artifact/pom.xml
index e3943c9..0d07e98 100644
--- a/maven-artifact/pom.xml
+++ b/maven-artifact/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   maven-artifact

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-builder-support/pom.xml
--
diff --git a/maven-builder-support/pom.xml b/maven-builder-support/pom.xml
index 39eb161..c303646 100644
--- a/maven-builder-support/pom.xml
+++ b/maven-builder-support/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   maven-builder-support

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-compat/pom.xml
--
diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
index bfd2b47..fd0a307 100644
--- a/maven-compat/pom.xml
+++ b/maven-compat/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   maven-compat

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-core/pom.xml
--
diff --git a/maven-core/pom.xml b/maven-core/pom.xml
index 0e20235..beb8a16 100644
--- a/maven-core/pom.xml
+++ b/maven-core/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   maven-core

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-embedder/pom.xml
--
diff --git a/maven-embedder/pom.xml b/maven-embedder/pom.xml
index 30ad2ce..21531a3 100644
--- a/maven-embedder/pom.xml
+++ b/maven-embedder/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   maven-embedder

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-model-builder/pom.xml
--
diff --git a/maven-model-builder/pom.xml b/maven-model-builder/pom.xml
index 0dd08ac..c8ede97 100644
--- a/maven-model-builder/pom.xml
+++ b/maven-model-builder/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-SNAPSHOT
+3.5.0-beta-1
   
 
   maven-model-builder

http://git-wip-us.apache.org/repos/asf/maven/blob/214540c2/maven-model/pom.xml
--
diff --git a/maven-model/pom.xml b/maven-model/pom.xml
index 41cf168..a3ed1c5 100644
--- a/maven-model/pom.xml
+++ b/maven-model/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-

[maven] Git Push Summary

2017-03-20 Thread stephenc
Repository: maven
Updated Tags:  refs/tags/maven-3.5.0-beta-1 [created] 64d156f1b


maven git commit: [maven-release-plugin] prepare for next development iteration

2017-03-20 Thread stephenc
Repository: maven
Updated Branches:
  refs/heads/master 214540c2a -> fd29ddebf


[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/master
Commit: fd29ddebf980b895ca3a1665aec49b3c7d17eeaf
Parents: 214540c
Author: Stephen Connolly 
Authored: Mon Mar 20 16:55:53 2017 +
Committer: Stephen Connolly 
Committed: Mon Mar 20 16:55:53 2017 +

--
 apache-maven/pom.xml  | 2 +-
 maven-artifact/pom.xml| 2 +-
 maven-builder-support/pom.xml | 2 +-
 maven-compat/pom.xml  | 2 +-
 maven-core/pom.xml| 2 +-
 maven-embedder/pom.xml| 2 +-
 maven-model-builder/pom.xml   | 2 +-
 maven-model/pom.xml   | 2 +-
 maven-plugin-api/pom.xml  | 2 +-
 maven-repository-metadata/pom.xml | 2 +-
 maven-resolver-provider/pom.xml   | 2 +-
 maven-settings-builder/pom.xml| 2 +-
 maven-settings/pom.xml| 2 +-
 maven-slf4j-provider/pom.xml  | 2 +-
 pom.xml   | 4 ++--
 15 files changed, 16 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/apache-maven/pom.xml
--
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 7bf2dd2..a528ddb 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   apache-maven

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-artifact/pom.xml
--
diff --git a/maven-artifact/pom.xml b/maven-artifact/pom.xml
index 0d07e98..e3943c9 100644
--- a/maven-artifact/pom.xml
+++ b/maven-artifact/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   maven-artifact

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-builder-support/pom.xml
--
diff --git a/maven-builder-support/pom.xml b/maven-builder-support/pom.xml
index c303646..39eb161 100644
--- a/maven-builder-support/pom.xml
+++ b/maven-builder-support/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   maven-builder-support

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-compat/pom.xml
--
diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
index fd0a307..bfd2b47 100644
--- a/maven-compat/pom.xml
+++ b/maven-compat/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   maven-compat

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-core/pom.xml
--
diff --git a/maven-core/pom.xml b/maven-core/pom.xml
index beb8a16..0e20235 100644
--- a/maven-core/pom.xml
+++ b/maven-core/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   maven-core

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-embedder/pom.xml
--
diff --git a/maven-embedder/pom.xml b/maven-embedder/pom.xml
index 21531a3..30ad2ce 100644
--- a/maven-embedder/pom.xml
+++ b/maven-embedder/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   maven-embedder

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-model-builder/pom.xml
--
diff --git a/maven-model-builder/pom.xml b/maven-model-builder/pom.xml
index c8ede97..0dd08ac 100644
--- a/maven-model-builder/pom.xml
+++ b/maven-model-builder/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-3.5.0-beta-1
+3.5.0-SNAPSHOT
   
 
   maven-model-builder

http://git-wip-us.apache.org/repos/asf/maven/blob/fd29ddeb/maven-model/pom.xml
--
diff --git a/maven-model/pom.xml b/maven-model/pom.xml
index a3ed1c5..41cf168 100644
--- a/maven-model/pom.xml
+++ b/maven-model/pom.xml
@@ -25,7 +25,7 @@ under the License.
   
 org.apache.maven
 maven
-

svn commit: r1787817 - in /maven/site/trunk/content/markdown/docs/3.5.0-beta-1: ./ release-notes.md

2017-03-20 Thread stephenc
Author: stephenc
Date: Mon Mar 20 17:36:11 2017
New Revision: 1787817

URL: http://svn.apache.org/viewvc?rev=1787817=rev
Log:
Adding draft release notes for 3.5.0-beta-1

Added:
maven/site/trunk/content/markdown/docs/3.5.0-beta-1/
maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md

Added: maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md?rev=1787817=auto
==
--- maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md (added)
+++ maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md Mon 
Mar 20 17:36:11 2017
@@ -0,0 +1,206 @@
+
+
+# Release Notes  Maven 3.5.0-beta-1
+
+The Apache Maven team would like to announce the release of Maven 3.5.0-beta-1.
+
+
+NOTE:
+This is an BETA release. There is the potential that features may be 
removed between this release and the first GA release in the 3.5.x release 
line.
+Please consult the Known Issues section below before use
+
+
+Maven 3.5.0-beta-1 is [available for download][0].
+
+Maven is a software project management and comprehension tool. Based on the 
concept of a project object model
+(POM), Maven can manage a project's build, reporting and documentation from a 
central place.
+
+The core release is independent of the plugins available. Further releases of 
plugins will be made separately.
+See the [PluginList][1] for more information.
+
+We hope you enjoy using Maven! If you have any questions, please consult:
+
+- the web site: [http://maven.apache.org/](/)
+- the maven-user mailing list: 
[http://maven.apache.org/mail-lists.html](/mail-lists.html)
+- the reference documentation: 
[http://maven.apache.org/ref/3.5.0-beta-1/](/ref/3.5.0-beta-1/)
+
+## Known Issues
+
+The following issues were identified during release testing of this _BETA_ 
release but have not been deemed as release blockers:
+
+## Why not Maven 3.4.0?
+
+After Maven 3.3.9 was released, the Eclipse Aether project was retired and the 
code base was migrated to the Apache Maven project.
+
+The original goal for the 3.4.0 release was to replace Aether with the exact 
same code after migration to the Apache Maven project and then proceed with bug 
fixes to the resolver code as well as other areas of Maven.
+
+The migration of the code between the two foundations took longer than 
expected and as a result there were other changes committed to Maven core that 
were outside the scope of intent for 3.4.0.
+
+In order to refocus on the original intent for 3.4.0, the decision was taken 
to revert the Maven core history to the point of the 3.3.9 release and merge in 
the desired changes one at a time.
+
+Because there had been a lot of communication about different features being 
delivered and bugs fixed in Maven 3.4.0 and the new history may not contain 
them in the first release, the decision was taken to forever burn the 3.4.x 
release line.
+
+More detail on this decision can be read in the [mailing list 
archive](http://www.mail-archive.com/dev@maven.apache.org/msg112103.html).
+
+## Reporters and Contributors of this release
+
+Bugs:
+
+ * [MNG-6090] reporter: Harald Wellmann
+ * [MNG-6173] reporter/contributor: Christoph Böhme
+
+Many thanks to all reporters and contributors for their time and support.
+
+## Preliminary Testers
+
+Thank you also for your time and feedback.
+
+## Overview about the changes
+
+ * The most obvious change you may encounter is that the console output
+   has colors now [MNG-3507], [MNG-6093].
+
+ * The new `project.directory` special property adds support in every 
calculated URLs (project, SCM, site)
+   for module directory name that does not match artifactId [MNG-5878]
+
+ * The `JAVA_HOME` discovery has been reduced to simply check if `JAVA_HOME` 
is set
+   or not then trying to discover via `which java`, nothing more [MNG-6003].
+
+ * The build bootstrapping support via Apache Ant has been removed. You can 
now only bootstrap Maven
+   build with a previous version of Maven, but not with Ant any more 
[MNG-5904].
+
+ * Based on problems in using `M2_HOME` related to different Maven versions 
installed and
+   to simplify things, the usage of `M2_HOME` has been removed and is not
+   supported any more [MNG-5823], [MNG-5836], [MNG-5607].
+
+ * Important change for windows users: The usage of `%HOME%` has been replaced
+   with `%USERPROFILE%` [MNG-6001]
+
+ * Several issues have been reported and fixed related to the `mvn` script 
either
+   for Unix/Linux/Cygwin/Solaris or for Windows
+   [MNG-5815], [MNG-5852], [MNG-5963], [MNG-6022].
+
+ * In Maven 3.3.9, we have removed bindings for maven-ejb3-plugin because it
+   does not exist. We follow-up and removed the artifact handler for `ejb3̀
+   and the `par` lifecycle [MNG-6014], [MNG-6017].
+
+ * In previous Maven versions, there had been a larger problem 

svn commit: r1787829 - /maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md

2017-03-20 Thread khmarbaise
Author: khmarbaise
Date: Mon Mar 20 18:47:38 2017
New Revision: 1787829

URL: http://svn.apache.org/viewvc?rev=1787829=rev
Log:
o Fixed issue with two links
o Added information about the CI friendly versions usage.

Modified:
maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md

Modified: maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md?rev=1787829=1787828=1787829=diff
==
--- maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md 
(original)
+++ maven/site/trunk/content/markdown/docs/3.5.0-beta-1/release-notes.md Mon 
Mar 20 18:47:38 2017
@@ -128,7 +128,13 @@ Thank you also for your time and feedbac
  * Replaced Eclipse Aether with [Maven Resolver][maven-resolver]
[MNG-6110], [MNG-6140].
 
- * The two known issues from 3.5.0-alpha-1 have been fixed [MNG-6177][MNG-6115]
+ * Using of CI friendly versions via `${revision}`, `${sha1}` and/or 
`${changelist}` 
+   has been fixed [MNG-6057], [MNG-6090] and [MNG-5895]. It is very important 
to
+   know if you are using the previously named properties for a version in your 
+   pom you have to use [flatten-maven-plugin] if you like to do an `mvn 
install` 
+   or `mvn deploy`.
+
+ * The two known issues from 3.5.0-alpha-1 have been fixed [MNG-6177], 
[MNG-6115]
 
 Improvements:
 
@@ -204,3 +210,5 @@ See [complete release notes for all vers
 [MNG-6182]: https://issues.apache.org/jira/browse/MNG-6182
 [MNG-6183]: https://issues.apache.org/jira/browse/MNG-6183
 [MNG-6189]: https://issues.apache.org/jira/browse/MNG-6189
+
+[flatten-maven-plugin]: http://www.mojohaus.org/flatten-maven-plugin/




svn commit: r1008709 - in /websites/staging/maven/trunk/content: ./ docs/3.5.0-beta-1/release-notes.html maven-ci-friendly.html maven-site-1.0-site.jar

2017-03-20 Thread buildbot
Author: buildbot
Date: Mon Mar 20 20:20:20 2017
New Revision: 1008709

Log:
Staging update by buildbot for maven

Added:
websites/staging/maven/trunk/content/maven-ci-friendly.html
Modified:
websites/staging/maven/trunk/content/   (props changed)
websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html
websites/staging/maven/trunk/content/maven-site-1.0-site.jar

Propchange: websites/staging/maven/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Mar 20 20:20:20 2017
@@ -1 +1 @@
-1787829
+1787841

Modified: 
websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html 
Mon Mar 20 20:20:20 2017
@@ -240,7 +240,7 @@
 Replaced Eclipse Aether with Maven 
Resolver  [MNG-6110], [MNG-6140].
   
 
-Using of CI friendly versions via ${revision}, ${sha1} 
and/or ${changelist}  has been fixed https://issues.apache.org/jira/browse/MNG-6057;>MNG-6057, https://issues.apache.org/jira/browse/MNG-6090;>MNG-6090 and https://issues.apache.org/jira/browse/MNG-5895;>MNG-5895. It is very 
important to  know if you are using the previously named properties for a 
version in your  pom you have to use http://www.mojohaus.org/flatten-maven-plugin/;>flatten-maven-plugin 
if you like to do an mvn install  or mvn deploy.
+Using of CI friendly versions via ${revision}, ${sha1} 
and/or ${changelist}  has been fixed https://issues.apache.org/jira/browse/MNG-6057;>MNG-6057, https://issues.apache.org/jira/browse/MNG-6090;>MNG-6090 and https://issues.apache.org/jira/browse/MNG-5895;>MNG-5895. It is very 
important to  know if you are using the previously named properties for a 
version in your  pom you have to use http://www.mojohaus.org/flatten-maven-plugin/;>flatten-maven-plugin 
if you like to do an mvn install  or mvn deploy more details 
can be found at Maven CI 
Friendly.
   
 
 The two known issues from 3.5.0-alpha-1 have been fixed https://issues.apache.org/jira/browse/MNG-6177;>MNG-6177, https://issues.apache.org/jira/browse/MNG-6115;>MNG-6115

Added: websites/staging/maven/trunk/content/maven-ci-friendly.html
==
--- websites/staging/maven/trunk/content/maven-ci-friendly.html (added)
+++ websites/staging/maven/trunk/content/maven-ci-friendly.html Mon Mar 20 
20:20:20 2017
@@ -0,0 +1,292 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Maven  Maven CI Friendly Versions
+
+
+
+  
+  
+
+  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/
+Maven CI Friendly Versions
+Last Published: 2017-03-20
+
+  
+  
+
+  
+
+  Main
+Welcome  
+https://www.apache.org/licenses/; class="externalLink" 
title="License">License  
+Download  
+Install  
+Configure  
+Run  
+IDE Integration  
+  About Maven
+What is Maven?  
+Features  
+FAQ  

+Support and Training  
+  Documentation
+Maven Plugins  
+Index (category)  
+Running Maven  
+User Centre  
+Plugin Developer Centre  

+Maven Repository Centre  
+Maven Developer Centre  
+Books and Resources  
+Security  
+  Community
+Community Overview  
+How to Contribute  
+Maven Repository  
+Getting Help  
+Issue Tracking  
+Source Repository  
+The Maven Team  
+  Project Documentation
+Project Information  
+  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  
+

svn commit: r1008706 - in /websites/production/maven/components/ref/3-LATEST: ./ apache-maven/ apidocs/ apidocs/org/apache/maven/ apidocs/org/apache/maven/artifact/ apidocs/org/apache/maven/artifact/c

2017-03-20 Thread stephenc
Author: stephenc
Date: Mon Mar 20 18:12:49 2017
New Revision: 1008706

Log:
Site checkin for project Apache Maven


[This commit notification would consist of 187 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1008703 [5/5] - in /websites/staging/maven/trunk/content: ./ apache-resource-bundles/ archetypes/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ d

2017-03-20 Thread buildbot
Modified: websites/staging/maven/trunk/content/source-repository.html
==
--- websites/staging/maven/trunk/content/source-repository.html (original)
+++ websites/staging/maven/trunk/content/source-repository.html Mon Mar 20 
17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 Maven  Source Repository
 
@@ -40,7 +40,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Source Repository
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/support-and-training.html
==
--- websites/staging/maven/trunk/content/support-and-training.html (original)
+++ websites/staging/maven/trunk/content/support-and-training.html Mon Mar 20 
17:37:43 2017
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Maven  Providers of Apache Maven Support and 
Training
 
@@ -39,7 +39,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Providers of Apache Maven Support and Training
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/team-list.html
==
--- websites/staging/maven/trunk/content/team-list.html (original)
+++ websites/staging/maven/trunk/content/team-list.html Mon Mar 20 17:37:43 2017
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Maven  Project Team
 
@@ -39,7 +39,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Project Team
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/testimonials.html
==
--- websites/staging/maven/trunk/content/testimonials.html (original)
+++ websites/staging/maven/trunk/content/testimonials.html Mon Mar 20 17:37:43 
2017
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Maven  Testimonials
 
@@ -39,7 +39,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Testimonials
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/users/getting-help.html
==
--- websites/staging/maven/trunk/content/users/getting-help.html (original)
+++ websites/staging/maven/trunk/content/users/getting-help.html Mon Mar 20 
17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -10,7 +10,7 @@
 
 
-
+
 
 Maven  Getting Help
 
@@ -42,7 +42,7 @@ Karl Heinz Marbaise" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Getting Help
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/users/index.html
==
--- websites/staging/maven/trunk/content/users/index.html (original)
+++ websites/staging/maven/trunk/content/users/index.html Mon Mar 20 17:37:43 
2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Users Centre
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Users Centre
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/what-is-maven.html
==
--- websites/staging/maven/trunk/content/what-is-maven.html (original)
+++ websites/staging/maven/trunk/content/what-is-maven.html Mon Mar 20 17:37:43 
2017
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Maven  Introduction
 
@@ -39,7 +39,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Introduction
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   




svn commit: r1008703 [1/5] - in /websites/staging/maven/trunk/content: ./ apache-resource-bundles/ archetypes/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ d

2017-03-20 Thread buildbot
Author: buildbot
Date: Mon Mar 20 17:37:43 2017
New Revision: 1008703

Log:
Staging update by buildbot for maven

Added:
websites/staging/maven/trunk/content/docs/3.5.0-beta-1/
websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html
Modified:
websites/staging/maven/trunk/content/   (props changed)
websites/staging/maven/trunk/content/about.html
websites/staging/maven/trunk/content/aether.html
websites/staging/maven/trunk/content/apache-resource-bundles/index.html
websites/staging/maven/trunk/content/archetypes/index.html
websites/staging/maven/trunk/content/archives/maven-2.x/index.html
websites/staging/maven/trunk/content/articles.html
websites/staging/maven/trunk/content/background/history-of-maven.html
websites/staging/maven/trunk/content/background/philosophy-of-maven.html
websites/staging/maven/trunk/content/code-quality-management.html
websites/staging/maven/trunk/content/community.html
websites/staging/maven/trunk/content/configure.html
websites/staging/maven/trunk/content/continuous-integration.html
websites/staging/maven/trunk/content/developers/committer-environment.html
websites/staging/maven/trunk/content/developers/committer-settings.html
websites/staging/maven/trunk/content/developers/conventions/code.html
websites/staging/maven/trunk/content/developers/conventions/git.html
websites/staging/maven/trunk/content/developers/conventions/jira.html
websites/staging/maven/trunk/content/developers/conventions/svn.html
websites/staging/maven/trunk/content/developers/dependency-policies.html
websites/staging/maven/trunk/content/developers/index.html
websites/staging/maven/trunk/content/developers/java5.html
websites/staging/maven/trunk/content/developers/java6.html
websites/staging/maven/trunk/content/developers/mojo-api-specification.html
websites/staging/maven/trunk/content/developers/release/index.html

websites/staging/maven/trunk/content/developers/release/maven-core-release.html

websites/staging/maven/trunk/content/developers/release/maven-project-release-procedure.html

websites/staging/maven/trunk/content/developers/release/parent-pom-release.html
websites/staging/maven/trunk/content/developers/release/pmc-gpg-keys.html
websites/staging/maven/trunk/content/developers/retirement-plan-plugins.html

websites/staging/maven/trunk/content/developers/website/component-reference-documentation-helper.html

websites/staging/maven/trunk/content/developers/website/deploy-component-reference-documentation.html

websites/staging/maven/trunk/content/developers/website/deploy-maven-website.html
websites/staging/maven/trunk/content/developers/website/index.html

websites/staging/maven/trunk/content/developers/website/website-overview.html

websites/staging/maven/trunk/content/developers/welcome-to-new-committers.html
websites/staging/maven/trunk/content/docs-required.html
websites/staging/maven/trunk/content/docs/2.0.1/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.10/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.11/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.2/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.3/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.4/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.5/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.6/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.7/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.8/release-notes.html
websites/staging/maven/trunk/content/docs/2.0.9/release-notes.html
websites/staging/maven/trunk/content/docs/2.0/release-notes.html
websites/staging/maven/trunk/content/docs/2.1.0/release-notes.html
websites/staging/maven/trunk/content/docs/2.2.0/release-notes.html
websites/staging/maven/trunk/content/docs/2.2.1/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-alpha-3/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-alpha-4/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-alpha-5/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-alpha-6/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-alpha-7/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-beta-1/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-beta-2/release-notes.html
websites/staging/maven/trunk/content/docs/3.0-beta-3/release-notes.html
websites/staging/maven/trunk/content/docs/3.0.1/release-notes.html
websites/staging/maven/trunk/content/docs/3.0.2/release-notes.html
websites/staging/maven/trunk/content/docs/3.0.3/release-notes.html
websites/staging/maven/trunk/content/docs/3.0.4/release-notes.html

svn commit: r1008703 [4/5] - in /websites/staging/maven/trunk/content: ./ apache-resource-bundles/ archetypes/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ d

2017-03-20 Thread buildbot
Modified: websites/staging/maven/trunk/content/guides/mini/guide-relocation.html
==
--- websites/staging/maven/trunk/content/guides/mini/guide-relocation.html 
(original)
+++ websites/staging/maven/trunk/content/guides/mini/guide-relocation.html Mon 
Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Guide to relocation
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to relocation
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/mini/guide-repository-ssl.html
==
--- websites/staging/maven/trunk/content/guides/mini/guide-repository-ssl.html 
(original)
+++ websites/staging/maven/trunk/content/guides/mini/guide-repository-ssl.html 
Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Remote repository access through authenticated 
HTTPS
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Remote repository access through authenticated 
HTTPS
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/guides/mini/guide-site.html
==
--- websites/staging/maven/trunk/content/guides/mini/guide-site.html (original)
+++ websites/staging/maven/trunk/content/guides/mini/guide-site.html Mon Mar 20 
17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -10,7 +10,7 @@
 
 
-
+
 
 Maven  Guide to creating a site
 
@@ -42,7 +42,7 @@ Jason van Zyl" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to creating a site
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/mini/guide-snippet-macro.html
==
--- websites/staging/maven/trunk/content/guides/mini/guide-snippet-macro.html 
(original)
+++ websites/staging/maven/trunk/content/guides/mini/guide-snippet-macro.html 
Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Guide to the Snippet Macro
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to the Snippet Macro
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/guides/mini/guide-using-ant.html
==
--- websites/staging/maven/trunk/content/guides/mini/guide-using-ant.html 
(original)
+++ websites/staging/maven/trunk/content/guides/mini/guide-using-ant.html Mon 
Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Guide to using Ant with Maven
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to using Ant with Maven
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/mini/guide-using-extensions.html
==
--- 
websites/staging/maven/trunk/content/guides/mini/guide-using-extensions.html 
(original)
+++ 
websites/staging/maven/trunk/content/guides/mini/guide-using-extensions.html 
Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Guide to using Extensions
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to using Extensions
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/mini/guide-using-modello.html
==
--- websites/staging/maven/trunk/content/guides/mini/guide-using-modello.html 
(original)
+++ websites/staging/maven/trunk/content/guides/mini/guide-using-modello.html 
Mon Mar 20 

svn commit: r1008703 [2/5] - in /websites/staging/maven/trunk/content: ./ apache-resource-bundles/ archetypes/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ d

2017-03-20 Thread buildbot
Modified: websites/staging/maven/trunk/content/docs/2.0.7/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.0.7/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/2.0.7/release-notes.html Mon Mar 
20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Release Notes - Maven 2.0.7
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.0.7
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/docs/2.0.8/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.0.8/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/2.0.8/release-notes.html Mon Mar 
20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Release Notes - Maven 2.0.8
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.0.8
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/docs/2.0.9/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.0.9/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/2.0.9/release-notes.html Mon Mar 
20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Release Notes - Maven 2.0.9
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.0.9
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/docs/2.0/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.0/release-notes.html (original)
+++ websites/staging/maven/trunk/content/docs/2.0/release-notes.html Mon Mar 20 
17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 Maven  Release Notes - Maven 2.0
 
@@ -40,7 +40,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.0
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/docs/2.1.0/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.1.0/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/2.1.0/release-notes.html Mon Mar 
20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -11,7 +11,7 @@
 Jason van Zyl
 Brian Fox" />
 
-
+
 
 Maven  Release Notes - Maven 2.1.0
 
@@ -43,7 +43,7 @@ Brian Fox" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.1.0
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/docs/2.2.0/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.2.0/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/2.2.0/release-notes.html Mon Mar 
20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -12,7 +12,7 @@ Jason van Zyl
 Brian Fox
 John Casey" />
 
-
+
 
 Maven  Release Notes - Maven 2.2.0
 
@@ -44,7 +44,7 @@ John Casey" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.2.0
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: websites/staging/maven/trunk/content/docs/2.2.1/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/2.2.1/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/2.2.1/release-notes.html Mon Mar 
20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">

svn commit: r1008703 [3/5] - in /websites/staging/maven/trunk/content: ./ apache-resource-bundles/ archetypes/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ d

2017-03-20 Thread buildbot
Modified: websites/staging/maven/trunk/content/glossary.html
==
--- websites/staging/maven/trunk/content/glossary.html (original)
+++ websites/staging/maven/trunk/content/glossary.html Mon Mar 20 17:37:43 2017
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Maven  Glossary
 
@@ -39,7 +39,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Glossary
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/development/guide-building-maven.html
==
--- 
websites/staging/maven/trunk/content/guides/development/guide-building-maven.html
 (original)
+++ 
websites/staging/maven/trunk/content/guides/development/guide-building-maven.html
 Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -10,7 +10,7 @@
 
 
-
+
 
 Maven  Guide to Building Maven
 
@@ -42,7 +42,7 @@ Jason van Zyl" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Building Maven
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/development/guide-documentation-style.html
==
--- 
websites/staging/maven/trunk/content/guides/development/guide-documentation-style.html
 (original)
+++ 
websites/staging/maven/trunk/content/guides/development/guide-documentation-style.html
 Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Guide To Maven Documentation Style
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide To Maven Documentation Style
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/development/guide-helping.html
==
--- websites/staging/maven/trunk/content/guides/development/guide-helping.html 
(original)
+++ websites/staging/maven/trunk/content/guides/development/guide-helping.html 
Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -10,7 +10,7 @@
 
 
-
+
 
 Maven  Guide to helping with Maven
 
@@ -42,7 +42,7 @@ Jason van Zyl" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to helping with Maven
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/development/guide-maven-development.html
==
--- 
websites/staging/maven/trunk/content/guides/development/guide-maven-development.html
 (original)
+++ 
websites/staging/maven/trunk/content/guides/development/guide-maven-development.html
 Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -11,7 +11,7 @@
 Trygve Laugstol
 Brett Porter" />
 
-
+
 
 Maven  Guide to Developing Maven
 
@@ -43,7 +43,7 @@ Brett Porter" />
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Developing Maven
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/development/guide-plugin-documentation.html
==
--- 
websites/staging/maven/trunk/content/guides/development/guide-plugin-documentation.html
 (original)
+++ 
websites/staging/maven/trunk/content/guides/development/guide-plugin-documentation.html
 Mon Mar 20 17:37:43 2017
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
@@ -9,7 +9,7 @@
 
 
 
-
+
 
 Maven  Guide to the Plugin Documentation Standard
 
@@ -41,7 +41,7 @@
 https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to the Plugin Documentation Standard
-Last Published: 2017-03-05
+Last Published: 2017-03-20
 
   
   

Modified: 
websites/staging/maven/trunk/content/guides/development/guide-testing-development-plugins.html
==
--- 

svn commit: r1008704 - in /websites/production/maven/components/ref/3-LATEST: ./ apidocs/ apidocs/org/apache/maven/ apidocs/org/apache/maven/artifact/ apidocs/org/apache/maven/artifact/class-use/ apid

2017-03-20 Thread stephenc
Author: stephenc
Date: Mon Mar 20 17:37:58 2017
New Revision: 1008704

Log:
3.5.0-beta-1


[This commit notification would consist of 87 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1008707 - in /websites/staging/maven/trunk/content: ./ docs/3.5.0-beta-1/release-notes.html maven-site-1.0-site.jar

2017-03-20 Thread buildbot
Author: buildbot
Date: Mon Mar 20 18:48:18 2017
New Revision: 1008707

Log:
Staging update by buildbot for maven

Modified:
websites/staging/maven/trunk/content/   (props changed)
websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html
websites/staging/maven/trunk/content/maven-site-1.0-site.jar

Propchange: websites/staging/maven/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Mar 20 18:48:18 2017
@@ -1 +1 @@
-1787817
+1787829

Modified: 
websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html
==
--- websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html 
(original)
+++ websites/staging/maven/trunk/content/docs/3.5.0-beta-1/release-notes.html 
Mon Mar 20 18:48:18 2017
@@ -240,7 +240,10 @@
 Replaced Eclipse Aether with Maven 
Resolver  [MNG-6110], [MNG-6140].
   
 
-The two known issues from 3.5.0-alpha-1 have been fixed https://issues.apache.org/jira/browse/MNG-6115;>MNG-6177
+Using of CI friendly versions via ${revision}, ${sha1} 
and/or ${changelist}  has been fixed https://issues.apache.org/jira/browse/MNG-6057;>MNG-6057, https://issues.apache.org/jira/browse/MNG-6090;>MNG-6090 and https://issues.apache.org/jira/browse/MNG-5895;>MNG-5895. It is very 
important to  know if you are using the previously named properties for a 
version in your  pom you have to use http://www.mojohaus.org/flatten-maven-plugin/;>flatten-maven-plugin 
if you like to do an mvn install  or mvn deploy.
+  
+
+The two known issues from 3.5.0-alpha-1 have been fixed https://issues.apache.org/jira/browse/MNG-6177;>MNG-6177, https://issues.apache.org/jira/browse/MNG-6115;>MNG-6115
 
 Improvements:
 Bugs:

Modified: websites/staging/maven/trunk/content/maven-site-1.0-site.jar
==
Binary files - no diff available.