svn commit: r1531239 - /maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java

2013-10-11 Thread andham
Author: andham
Date: Fri Oct 11 09:28:06 2013
New Revision: 1531239

URL: http://svn.apache.org/r1531239
Log:
Added missing Generics

Modified:

maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java

Modified: 
maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java?rev=1531239r1=1531238r2=1531239view=diff
==
--- 
maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java
 Fri Oct 11 09:28:06 2013
@@ -62,7 +62,7 @@ public abstract class AbstractDeployMojo
  * Map that contains the layouts.
  */
 @Component( role = ArtifactRepositoryLayout.class )
-private Map repositoryLayouts;
+private MapString, ArtifactRepositoryLayout repositoryLayouts;
 
 /**
  */
@@ -124,7 +124,7 @@ public abstract class AbstractDeployMojo
 ArtifactRepositoryLayout getLayout( String id )
 throws MojoExecutionException
 {
-ArtifactRepositoryLayout layout = (ArtifactRepositoryLayout) 
repositoryLayouts.get( id );
+ArtifactRepositoryLayout layout = repositoryLayouts.get( id );
 
 if ( layout == null )
 {




svn commit: r1531346 - in /maven/plugin-testing/trunk: maven-plugin-testing-harness/pom.xml maven-plugin-testing-tools/pom.xml maven-test-tools/pom.xml pom.xml

2013-10-11 Thread jvanzyl
Author: jvanzyl
Date: Fri Oct 11 16:24:09 2013
New Revision: 1531346

URL: http://svn.apache.org/r1531346
Log:
Updating for Maven 3.1.1 and some fixes for the Maven Android Plugin

Modified:
maven/plugin-testing/trunk/maven-plugin-testing-harness/pom.xml
maven/plugin-testing/trunk/maven-plugin-testing-tools/pom.xml
maven/plugin-testing/trunk/maven-test-tools/pom.xml
maven/plugin-testing/trunk/pom.xml

Modified: maven/plugin-testing/trunk/maven-plugin-testing-harness/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-testing/trunk/maven-plugin-testing-harness/pom.xml?rev=1531346r1=1531345r2=1531346view=diff
==
--- maven/plugin-testing/trunk/maven-plugin-testing-harness/pom.xml (original)
+++ maven/plugin-testing/trunk/maven-plugin-testing-harness/pom.xml Fri Oct 11 
16:24:09 2013
@@ -25,7 +25,7 @@ under the License.
   parent
 groupIdorg.apache.maven.plugin-testing/groupId
 artifactIdmaven-plugin-testing/artifactId
-version3.0-SNAPSHOT/version
+version3.0.0-SNAPSHOT/version
   /parent
 
   artifactIdmaven-plugin-testing-harness/artifactId

Modified: maven/plugin-testing/trunk/maven-plugin-testing-tools/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-testing/trunk/maven-plugin-testing-tools/pom.xml?rev=1531346r1=1531345r2=1531346view=diff
==
--- maven/plugin-testing/trunk/maven-plugin-testing-tools/pom.xml (original)
+++ maven/plugin-testing/trunk/maven-plugin-testing-tools/pom.xml Fri Oct 11 
16:24:09 2013
@@ -25,7 +25,7 @@ under the License.
   parent
 groupIdorg.apache.maven.plugin-testing/groupId
 artifactIdmaven-plugin-testing/artifactId
-version3.0-SNAPSHOT/version
+version3.0.0-SNAPSHOT/version
   /parent
 
   artifactIdmaven-plugin-testing-tools/artifactId

Modified: maven/plugin-testing/trunk/maven-test-tools/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-testing/trunk/maven-test-tools/pom.xml?rev=1531346r1=1531345r2=1531346view=diff
==
--- maven/plugin-testing/trunk/maven-test-tools/pom.xml (original)
+++ maven/plugin-testing/trunk/maven-test-tools/pom.xml Fri Oct 11 16:24:09 2013
@@ -25,7 +25,7 @@ under the License.
   parent
 groupIdorg.apache.maven.plugin-testing/groupId
 artifactIdmaven-plugin-testing/artifactId
-version3.0-SNAPSHOT/version
+version3.0.0-SNAPSHOT/version
   /parent
 
   artifactIdmaven-test-tools/artifactId

Modified: maven/plugin-testing/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-testing/trunk/pom.xml?rev=1531346r1=1531345r2=1531346view=diff
==
--- maven/plugin-testing/trunk/pom.xml (original)
+++ maven/plugin-testing/trunk/pom.xml Fri Oct 11 16:24:09 2013
@@ -31,7 +31,7 @@ under the License.
 
   groupIdorg.apache.maven.plugin-testing/groupId
   artifactIdmaven-plugin-testing/artifactId
-  version3.0-SNAPSHOT/version
+  version3.0.0-SNAPSHOT/version
   packagingpom/packaging
 
   nameMaven Plugin Testing/name
@@ -114,7 +114,7 @@ under the License.
   /mailingLists
 
   prerequisites
-maven3.1.0/maven
+maven3.1.1/maven
   /prerequisites
 
   modules
@@ -144,7 +144,7 @@ under the License.
   /distributionManagement
 
   properties
-mavenVersion3.1.0/mavenVersion
+mavenVersion3.1.1/mavenVersion
 plexusVersion1.5.5/plexusVersion
 maven.site.pathplugin-testing-archives/LATEST/maven.site.path
   /properties
@@ -187,7 +187,7 @@ under the License.
   dependency
 groupIdorg.codehaus.plexus/groupId
 artifactIdplexus-utils/artifactId
-version3.0.10/version
+version3.0.15/version
 scopeprovided/scope
   /dependency
 




svn commit: r1531347 - in /maven/plugins/trunk/maven-deploy-plugin: ./ src/it/MDEPLOY-170_deploy-at-end-configperproject/ src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/ src/it/MDEPLOY-170_

2013-10-11 Thread rfscholte
Author: rfscholte
Date: Fri Oct 11 16:38:02 2013
New Revision: 1531347

URL: http://svn.apache.org/r1531347
Log:
[MDEPLOY-170] Plugin configuration on module level is ignored when deployAtEnd

Added:

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/pom.xml

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module2/

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module2/pom.xml

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/pom.xml

maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/verify.groovy

maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployRequest.java
Modified:
maven/plugins/trunk/maven-deploy-plugin/pom.xml

maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java

maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployFileMojo.java

maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java

maven/plugins/trunk/maven-deploy-plugin/src/test/java/org/apache/maven/plugin/deploy/DeployMojoTest.java

Modified: maven/plugins/trunk/maven-deploy-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/pom.xml?rev=1531347r1=1531346r2=1531347view=diff
==
--- maven/plugins/trunk/maven-deploy-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-deploy-plugin/pom.xml Fri Oct 11 16:38:02 2013
@@ -30,7 +30,7 @@ under the License.
   /parent
 
   artifactIdmaven-deploy-plugin/artifactId
-  version2.9-SNAPSHOT/version
+  version2.8.1-SNAPSHOT/version
   packagingmaven-plugin/packaging
 
   nameApache Maven Deploy Plugin/name

Added: 
maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/pom.xml?rev=1531347view=auto
==
--- 
maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/pom.xml
 (added)
+++ 
maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module1/pom.xml
 Fri Oct 11 16:38:02 2013
@@ -0,0 +1,25 @@
+?xml version=1.0 encoding=UTF-8?
+
+!-- Licensed to the Apache Software Foundation (ASF) under one or more 
contributor 
+  license agreements. See the NOTICE file distributed with this work for 
additional 
+  information regarding copyright ownership. The ASF licenses this file to 
+  you under the Apache License, Version 2.0 (the License); you may not use 
+  this file except in compliance with the License. You may obtain a copy of 
+  the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
+  by applicable law or agreed to in writing, software distributed under the 
+  License is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS 
+  OF ANY KIND, either express or implied. See the License for the specific 
+  language governing permissions and limitations under the License. --
+
+project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+  xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;
+  modelVersion4.0.0/modelVersion
+
+  parent
+groupIdorg.apache.maven.its.mdeploy-170/groupId
+artifactIdconfigperproject/artifactId
+version1.0/version
+  /parent
+  artifactIdmodule1/artifactId
+
+/project

Added: 
maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module2/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module2/pom.xml?rev=1531347view=auto
==
--- 
maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module2/pom.xml
 (added)
+++ 
maven/plugins/trunk/maven-deploy-plugin/src/it/MDEPLOY-170_deploy-at-end-configperproject/module2/pom.xml
 Fri Oct 11 16:38:02 2013
@@ -0,0 +1,38 @@
+?xml version=1.0 encoding=UTF-8?
+
+!-- Licensed to the Apache Software Foundation (ASF) under one or more 
contributor 
+  license agreements. See the NOTICE file distributed with this work for 
additional 
+  information regarding copyright ownership. The ASF licenses this file to 
+  you under 

svn commit: r1531419 - in /maven/release/trunk: maven-release-manager/pom.xml pom.xml

2013-10-11 Thread dennisl
Author: dennisl
Date: Fri Oct 11 21:09:00 2013
New Revision: 1531419

URL: http://svn.apache.org/r1531419
Log:
Upgrade to maven-parent:23.

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

Modified: maven/release/trunk/maven-release-manager/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-manager/pom.xml?rev=1531419r1=1531418r2=1531419view=diff
==
--- maven/release/trunk/maven-release-manager/pom.xml (original)
+++ maven/release/trunk/maven-release-manager/pom.xml Fri Oct 11 21:09:00 2013
@@ -272,7 +272,6 @@
   plugin
 groupIdorg.apache.maven.plugins/groupId
 artifactIdmaven-failsafe-plugin/artifactId
-version2.12/version
 executions
   execution
 goals

Modified: maven/release/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/pom.xml?rev=1531419r1=1531418r2=1531419view=diff
==
--- maven/release/trunk/pom.xml (original)
+++ maven/release/trunk/pom.xml Fri Oct 11 21:09:00 2013
@@ -24,7 +24,7 @@
   parent
 groupIdorg.apache.maven/groupId
 artifactIdmaven-parent/artifactId
-version22/version
+version23/version
 relativePath../pom/maven/pom.xml/relativePath
   /parent
 
@@ -104,18 +104,7 @@
   plugins
 plugin
   groupIdorg.apache.maven.plugins/groupId
-  artifactIdmaven-surefire-plugin/artifactId
-  version2.12/version
-/plugin
-plugin
-  groupIdorg.apache.maven.plugins/groupId
-  artifactIdmaven-site-plugin/artifactId
-  version3.2/version
-/plugin
-plugin
-  groupIdorg.apache.maven.plugins/groupId
   artifactIdmaven-scm-publish-plugin/artifactId
-  version1.0-beta-2/version
   configuration
 
checkoutDirectory${maven.release.scmPubCheckoutDirectory}/checkoutDirectory
 pubScmUrlscm:svn:${maven.release.scmPubUrl}/pubScmUrl
@@ -130,17 +119,6 @@
 
   profiles
 profile
-  idreporting/id
-  reporting
-plugins
-  plugin
-artifactIdmaven-project-info-reports-plugin/artifactId
-version2.6/version
-  /plugin
-/plugins
-  /reporting
-/profile
-profile
   idsite-release/id
   properties
 maven.site.path${project.artifactId}/maven.site.path




svn commit: r1531422 - /maven/release/trunk/

2013-10-11 Thread dennisl
Author: dennisl
Date: Fri Oct 11 21:15:13 2013
New Revision: 1531422

URL: http://svn.apache.org/r1531422
Log:
Ignore IDEA directory.

Modified:
maven/release/trunk/   (props changed)

Propchange: maven/release/trunk/
--
--- svn:ignore (original)
+++ svn:ignore Fri Oct 11 21:15:13 2013
@@ -6,3 +6,4 @@ target
 .classpath
 .project
 .settings
+.idea




svn commit: r1531428 - in /maven/release/trunk: maven-release-plugin/src/it/projects/branch/MRELEASE-458/ maven-release-plugin/src/it/projects/perform/MRELEASE-736/ maven-release-plugin/src/it/project

2013-10-11 Thread dennisl
Author: dennisl
Date: Fri Oct 11 21:35:01 2013
New Revision: 1531428

URL: http://svn.apache.org/r1531428
Log:
Add missing license headers.

Modified:

maven/release/trunk/maven-release-plugin/src/it/projects/branch/MRELEASE-458/verify.bsh

maven/release/trunk/maven-release-plugin/src/it/projects/perform/MRELEASE-736/test.properties

maven/release/trunk/maven-release-plugin/src/it/projects/perform/MRELEASE-832/invoker.properties

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/MRELEASE-483/test.properties

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/MRELEASE-533/test.properties

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/MRELEASE-571_M3/invoker.properties

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/MRELEASE-571_M3/module1/pom.xml

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/MRELEASE-571_M3/pom.xml

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/completion-goals/verify.bsh

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-a/src/main/java/org/apache/maven/plugin/release/module/a/App.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-a/src/test/java/org/apache/maven/plugin/release/module/a/AppTest.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/parent-project/verify.bsh

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/module-a/pom.xml

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/module-a/src/main/java/org/apache/maven/plugin/release/module/a/App.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/module-a/src/test/java/org/apache/maven/plugin/release/module/a/AppTest.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/module-b/pom.xml

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/module-b/src/main/java/org/apache/maven/plugin/release/module/b/App.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/module-b/src/test/java/org/apache/maven/plugin/release/module/b/AppTest.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/regular-multi-module/verify.bsh

maven/release/trunk/maven-release-plugin/src/it/setup/maven-scm-provider-dummy/invoker.properties

maven/release/trunk/maven-release-plugin/src/it/setup/maven-scm-provider-stub/invoker.properties

maven/release/trunk/maven-release-plugin/src/it/setup/maven-wagon-provider-dummy/invoker.properties
maven/release/trunk/src/site/apt/index.apt

Modified: 
maven/release/trunk/maven-release-plugin/src/it/projects/branch/MRELEASE-458/verify.bsh
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/src/it/projects/branch/MRELEASE-458/verify.bsh?rev=1531428r1=1531427r2=1531428view=diff
==
--- 
maven/release/trunk/maven-release-plugin/src/it/projects/branch/MRELEASE-458/verify.bsh
 (original)
+++ 
maven/release/trunk/maven-release-plugin/src/it/projects/branch/MRELEASE-458/verify.bsh
 Fri Oct 11 21:35:01 2013
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 import java.io.*;
 import java.util.*;
 import java.util.regex.*;

Modified: 
maven/release/trunk/maven-release-plugin/src/it/projects/perform/MRELEASE-736/test.properties
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/src/it/projects/perform/MRELEASE-736/test.properties?rev=1531428r1=1531427r2=1531428view=diff
==
--- 
maven/release/trunk/maven-release-plugin/src/it/projects/perform/MRELEASE-736/test.properties
 (original)
+++ 
maven/release/trunk/maven-release-plugin/src/it/projects/perform/MRELEASE-736/test.properties
 Fri Oct 11 21:35:01 2013
@@ -1 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license 

svn commit: r1531429 - in /maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src: main/java/org/apache/maven/plugin/release/module/b/App.java test/java/org/ap

2013-10-11 Thread dennisl
Author: dennisl
Date: Fri Oct 11 21:35:24 2013
New Revision: 1531429

URL: http://svn.apache.org/r1531429
Log:
Add missing license headers.

Modified:

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/main/java/org/apache/maven/plugin/release/module/b/App.java

maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/test/java/org/apache/maven/plugin/release/module/b/AppTest.java

Modified: 
maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/main/java/org/apache/maven/plugin/release/module/b/App.java
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/main/java/org/apache/maven/plugin/release/module/b/App.java?rev=1531429r1=1531428r2=1531429view=diff
==
--- 
maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/main/java/org/apache/maven/plugin/release/module/b/App.java
 (original)
+++ 
maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/main/java/org/apache/maven/plugin/release/module/b/App.java
 Fri Oct 11 21:35:24 2013
@@ -1,5 +1,25 @@
 package org.apache.maven.plugin.release.module.b;
 
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+
 /**
  * Hello world!
  *

Modified: 
maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/test/java/org/apache/maven/plugin/release/module/b/AppTest.java
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/test/java/org/apache/maven/plugin/release/module/b/AppTest.java?rev=1531429r1=1531428r2=1531429view=diff
==
--- 
maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/test/java/org/apache/maven/plugin/release/module/b/AppTest.java
 (original)
+++ 
maven/release/trunk/maven-release-plugin/src/it/projects/prepare/flat-multi-module/module-b/src/test/java/org/apache/maven/plugin/release/module/b/AppTest.java
 Fri Oct 11 21:35:24 2013
@@ -1,5 +1,25 @@
 package org.apache.maven.plugin.release.module.b;
 
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+
 import junit.framework.Test;
 import junit.framework.TestCase;
 import junit.framework.TestSuite;




svn commit: r1531432 - in /maven/release/trunk/maven-release-manager/src/test/remote-repository: external/artifactId-release-range/1.0-SNAPSHOT/ external/artifactId-release-range/1.0/ external/artifac

2013-10-11 Thread dennisl
Author: dennisl
Date: Fri Oct 11 21:41:48 2013
New Revision: 1531432

URL: http://svn.apache.org/r1531432
Log:
Set correct Subversion properties: mime-type.

Modified:

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId-release-range/1.0-SNAPSHOT/artifactId-release-range-1.0-20060424.060453-1.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId-release-range/1.0/artifactId-release-range-1.0.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId/1.0-SNAPSHOT/artifactId-1.0-20060424.060453-1.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId/1.0/artifactId-1.0.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId/1.1-SNAPSHOT/artifactId-1.1-20080128.141330-1.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/plugin-artifactId/1.0/plugin-artifactId-1.0.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/external/plugin-artifactId/1.1-SNAPSHOT/plugin-artifactId-1.1-20060424.131158-1.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/groupId/subproject1/1.0-SNAPSHOT/subproject1-1.0-SNAPSHOT.jar
   (props changed)

maven/release/trunk/maven-release-manager/src/test/remote-repository/groupId/subproject1/2.0/subproject1-2.0.jar
   (props changed)

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId-release-range/1.0-SNAPSHOT/artifactId-release-range-1.0-20060424.060453-1.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId-release-range/1.0/artifactId-release-range-1.0.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId/1.0-SNAPSHOT/artifactId-1.0-20060424.060453-1.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId/1.0/artifactId-1.0.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/artifactId/1.1-SNAPSHOT/artifactId-1.1-20080128.141330-1.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/plugin-artifactId/1.0/plugin-artifactId-1.0.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/external/plugin-artifactId/1.1-SNAPSHOT/plugin-artifactId-1.1-20060424.131158-1.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/groupId/subproject1/1.0-SNAPSHOT/subproject1-1.0-SNAPSHOT.jar
--
svn:mime-type = application/octet-stream

Propchange: 
maven/release/trunk/maven-release-manager/src/test/remote-repository/groupId/subproject1/2.0/subproject1-2.0.jar
--
svn:mime-type = application/octet-stream




svn commit: r1531451 [15/15] - in /maven/release/trunk: ./ maven-release-manager/src/main/java/org/apache/maven/shared/release/ maven-release-manager/src/main/java/org/apache/maven/shared/release/scm/

2013-10-11 Thread dennisl
Modified: 
maven/release/trunk/maven-release-plugin/src/it/setup/maven-wagon-provider-dummy/src/main/java/org/apache/maven/wagon/providers/dummy/DummyWagonProvider.java
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/src/it/setup/maven-wagon-provider-dummy/src/main/java/org/apache/maven/wagon/providers/dummy/DummyWagonProvider.java?rev=1531451r1=1531450r2=1531451view=diff
==
--- 
maven/release/trunk/maven-release-plugin/src/it/setup/maven-wagon-provider-dummy/src/main/java/org/apache/maven/wagon/providers/dummy/DummyWagonProvider.java
 (original)
+++ 
maven/release/trunk/maven-release-plugin/src/it/setup/maven-wagon-provider-dummy/src/main/java/org/apache/maven/wagon/providers/dummy/DummyWagonProvider.java
 Fri Oct 11 22:18:49 2013
@@ -1,183 +1,183 @@
-package org.apache.maven.wagon.providers.dummy;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * License); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.File;
-import java.util.List;
-
-import org.apache.maven.wagon.ConnectionException;
-import org.apache.maven.wagon.ResourceDoesNotExistException;
-import org.apache.maven.wagon.TransferFailedException;
-import org.apache.maven.wagon.Wagon;
-import org.apache.maven.wagon.authentication.AuthenticationException;
-import org.apache.maven.wagon.authentication.AuthenticationInfo;
-import org.apache.maven.wagon.authorization.AuthorizationException;
-import org.apache.maven.wagon.events.SessionListener;
-import org.apache.maven.wagon.events.TransferListener;
-import org.apache.maven.wagon.proxy.ProxyInfo;
-import org.apache.maven.wagon.proxy.ProxyInfoProvider;
-import org.apache.maven.wagon.repository.Repository;
-
-/**
- * DummyWagonProvider which does absolutely nothing
- * 
- * @author Robert Scholte
- * 
- * @plexus.component role=org.apache.maven.wagon.Wagon role-hint=dummy 
instantiation-strategy=per-lookup
- */
-public class DummyWagonProvider implements Wagon
-{
-
-public void get( String resourceName, File destination )
-throws TransferFailedException, ResourceDoesNotExistException, 
AuthorizationException
-{
-}
-
-public boolean getIfNewer( String resourceName, File destination, long 
timestamp )
-throws TransferFailedException, ResourceDoesNotExistException, 
AuthorizationException
-{
-return false;
-}
-
-public void put( File source, String destination )
-throws TransferFailedException, ResourceDoesNotExistException, 
AuthorizationException
-{
-}
-
-public void putDirectory( File sourceDirectory, String 
destinationDirectory )
-throws TransferFailedException, ResourceDoesNotExistException, 
AuthorizationException
-{
-}
-
-public boolean resourceExists( String resourceName )
-throws TransferFailedException, AuthorizationException
-{
-return false;
-}
-
-public ListString getFileList( String destinationDirectory )
-throws TransferFailedException, ResourceDoesNotExistException, 
AuthorizationException
-{
-return null;
-}
-
-public boolean supportsDirectoryCopy()
-{
-return false;
-}
-
-public Repository getRepository()
-{
-return null;
-}
-
-public void connect( Repository source )
-throws ConnectionException, AuthenticationException
-{
-}
-
-public void connect( Repository source, ProxyInfo proxyInfo )
-throws ConnectionException, AuthenticationException
-{
-}
-
-public void connect( Repository source, ProxyInfoProvider 
proxyInfoProvider )
-throws ConnectionException, AuthenticationException
-{
-}
-
-public void connect( Repository source, AuthenticationInfo 
authenticationInfo )
-throws ConnectionException, AuthenticationException
-{
-}
-
-public void connect( Repository source, AuthenticationInfo 
authenticationInfo, ProxyInfo proxyInfo )
-throws ConnectionException, AuthenticationException
-{
-}
-
-public void connect( Repository source, AuthenticationInfo 
authenticationInfo, ProxyInfoProvider proxyInfoProvider )
-throws ConnectionException, AuthenticationException
-{
-}
-
-