You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/04/27 20:17:58 UTC

[maven-assembly-plugin] branch unused created (now 29d016f)

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a change to branch unused
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git.


      at 29d016f  clarify test dependencies

This branch includes the following new commits:

     new 29d016f  clarify test dependencies

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



[maven-assembly-plugin] 01/01: clarify test dependencies

Posted by el...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch unused
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git

commit 29d016f3dd4c14f181a6df9fd4c02692d6d4ab01
Author: Elliotte Rusty Harold <el...@ibiblio.org>
AuthorDate: Mon Apr 27 16:17:42 2020 -0400

    clarify test dependencies
---
 pom.xml                                            | 25 ++++++++++------------
 .../ComponentsXmlArchiverFileFilterTest.java       |  2 +-
 2 files changed, 12 insertions(+), 15 deletions(-)

diff --git a/pom.xml b/pom.xml
index a94a71f..0a14e6a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,9 @@ 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">
+<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>
@@ -205,23 +207,18 @@ under the License.
       <scope>test</scope> 
     </dependency>
     <dependency>
-      <groupId>jdom</groupId>
+      <groupId>org.jdom</groupId>
       <artifactId>jdom</artifactId>
-      <version>1.0</version>
+      <version>1.1.3</version>
       <scope>test</scope>
     </dependency>
+    <!-- need this because JDOM incorrectly declares its own dependencies -->
     <dependency>
-      <groupId>jaxen</groupId>
-      <artifactId>jaxen</artifactId>
-      <version>1.0-FCS</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>saxpath</groupId>
-      <artifactId>saxpath</artifactId>
-      <version>1.0-FCS</version>
-      <scope>test</scope>
-    </dependency>
+			<groupId>jaxen</groupId>
+			<artifactId>jaxen</artifactId>
+			<version>1.2.0</version>
+		</dependency>    
+    
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
diff --git a/src/test/java/org/apache/maven/plugins/assembly/filter/ComponentsXmlArchiverFileFilterTest.java b/src/test/java/org/apache/maven/plugins/assembly/filter/ComponentsXmlArchiverFileFilterTest.java
index 26954ce..ea8ea07 100644
--- a/src/test/java/org/apache/maven/plugins/assembly/filter/ComponentsXmlArchiverFileFilterTest.java
+++ b/src/test/java/org/apache/maven/plugins/assembly/filter/ComponentsXmlArchiverFileFilterTest.java
@@ -65,7 +65,7 @@ import java.util.zip.ZipFile;
 
 public class ComponentsXmlArchiverFileFilterTest
 {
-//    private final TestFileManager fileManager = new TestFileManager( "componentsXmlArchiverFileFilter.test", ".zip" );
+
     @Rule
     public TemporaryFolder temporaryFolder = new TemporaryFolder();