Author: bentmann
Date: Sun Dec 20 19:44:15 2009
New Revision: 892646
URL: http://svn.apache.org/viewvc?rev=892646&view=rev
Log:
[MDEPLOY-113] No longer able to deploy an artifact w/o a pom
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties
(with props)
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml
(with props)
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh
(with props)
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test-0.1.jar
(with props)
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties
(with props)
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh
(with props)
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties?rev=892646&view=auto
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties
(added)
+++
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties
Sun Dec 20 19:44:15 2009
@@ -0,0 +1 @@
+invoker.goals =
org.apache.maven.plugins:maven-deploy-plugin:${project.version}:deploy-file
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/invoker.properties
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml?rev=892646&view=auto
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml
(added)
+++
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml
Sun Dec 20 19:44:15 2009
@@ -0,0 +1,44 @@
+<?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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.maven.its.deploy.tpjwop</groupId>
+ <artifactId>test</artifactId>
+ <version>1.0</version>
+ <packaging>jar</packaging>
+
+ <description>
+ Tests the manual deployment of a simple release JAR without a
corresponding POM (cf. MDEPLOY-113).
+ </description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>@project.version@</version>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/pom.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh?rev=892646&view=auto
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh
(added)
+++
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh
Sun Dec 20 19:44:15 2009
@@ -0,0 +1,14 @@
+import java.io.*;
+import java.util.*;
+
+import org.codehaus.plexus.util.*;
+
+File file = new File( localRepositoryPath,
"org/apache/maven/its/deploy/tpjwop" );
+System.out.println( "Deleting " + file );
+FileUtils.deleteDirectory( file );
+
+file = new File( basedir, "target/repo" );
+System.out.println( "Deleting " + file );
+FileUtils.deleteDirectory( file );
+
+return true;
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/setup.bsh
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test-0.1.jar
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test-0.1.jar?rev=892646&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test-0.1.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties?rev=892646&view=auto
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties
(added)
+++
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties
Sun Dec 20 19:44:15 2009
@@ -0,0 +1,8 @@
+file = test-0.1.jar
+url = file:///${basedir}/target/repo
+updateReleaseInfo = true
+groupId = org.apache.maven.its.deploy.tpjwop
+artifactId = test
+version = 1.0
+packaging = jar
+generatePom = false
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/test.properties
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh?rev=892646&view=auto
==============================================================================
---
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh
(added)
+++
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh
Sun Dec 20 19:44:15 2009
@@ -0,0 +1,35 @@
+import java.io.*;
+import java.util.*;
+
+String[] paths =
+{
+ "org/apache/maven/its/deploy/tpjwop/test/maven-metadata.xml",
+ "org/apache/maven/its/deploy/tpjwop/test/1.0/test-1.0.jar",
+};
+
+for ( String path : paths )
+{
+ File file = new File( new File( basedir, "target/repo" ), path );
+ System.out.println( "Checking for existence of " + file );
+ if ( !file.isFile() )
+ {
+ throw new FileNotFoundException( "Missing: " + file.getAbsolutePath()
);
+ }
+}
+
+String[] missing =
+{
+ "org/apache/maven/its/deploy/tpjwop/test/1.0/test-1.0.pom",
+};
+
+for ( String path : missing )
+{
+ File file = new File( new File( basedir, "target/repo" ), path );
+ System.out.println( "Checking for absence of " + file );
+ if ( file.exists() )
+ {
+ throw new FileNotFoundException( "Existent: " + file.getAbsolutePath()
);
+ }
+}
+
+return true;
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/plugins/trunk/maven-deploy-plugin/src/it/3rd-party-jar-without-pom/verify.bsh
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision