You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/02/10 13:03:08 UTC

svn commit: r742945 - in /maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar: ./ invoker.properties pom.xml setup.bsh test-0.1.jar test-0.1.pom test.properties verify.bsh

Author: bentmann
Date: Tue Feb 10 12:02:57 2009
New Revision: 742945

URL: http://svn.apache.org/viewvc?rev=742945&view=rev
Log:
o Added IT to test deploy-file

Added:
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties   (with props)
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/pom.xml   (with props)
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/setup.bsh   (with props)
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.jar   (with props)
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.pom
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties   (with props)
    maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh   (with props)

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties?rev=742945&view=auto
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties (added)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties Tue Feb 10 12:02:57 2009
@@ -0,0 +1 @@
+invoker.goals = deploy:deploy-file

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/invoker.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/pom.xml?rev=742945&view=auto
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/pom.xml (added)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/pom.xml Tue Feb 10 12:02:57 2009
@@ -0,0 +1,45 @@
+<?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.erj</groupId>
+  <artifactId>test</artifactId>
+  <version>1.0</version>
+  <packaging>jar</packaging>
+
+  <description>
+    Tests the manual deployment of a simple release JAR with a corresponding POM whose coordinates are inherited
+    from the parent (cf. MDEPLOY-56).
+  </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/external-release-jar/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/setup.bsh
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/setup.bsh?rev=742945&view=auto
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/setup.bsh (added)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/setup.bsh Tue Feb 10 12:02:57 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/erj" );
+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/external-release-jar/setup.bsh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/setup.bsh
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.jar
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.jar?rev=742945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.pom?rev=742945&view=auto
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.pom (added)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test-0.1.pom Tue Feb 10 12:02:57 2009
@@ -0,0 +1,34 @@
+<?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>
+
+  <parent>
+    <groupId>org.apache.maven.its.deploy.erj</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0</version>
+  </parent>
+
+  <!-- NOTE: Inherit everything from the parent -->
+  <artifactId>test</artifactId>
+
+</project>

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties?rev=742945&view=auto
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties (added)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties Tue Feb 10 12:02:57 2009
@@ -0,0 +1,3 @@
+file = test-0.1.jar
+pomFile = test-0.1.pom
+url = file:///${basedir}/target/repo

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/test.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh?rev=742945&view=auto
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh (added)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh Tue Feb 10 12:02:57 2009
@@ -0,0 +1,21 @@
+import java.io.*;
+import java.util.*;
+
+String[] paths =
+{
+    "org/apache/maven/its/deploy/erj/test/maven-metadata.xml",
+    "org/apache/maven/its/deploy/erj/test/1.0/test-1.0.pom",
+    "org/apache/maven/its/deploy/erj/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() );
+    }
+}
+
+return true;

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-deploy-plugin/src/it/external-release-jar/verify.bsh
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision