You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2021/12/19 06:46:38 UTC

[activemq] branch activemq-5.16.x updated: [AMQ-8439] Exclude camel.xml from assembly validateExampleConfig test

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

jbonofre pushed a commit to branch activemq-5.16.x
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/activemq-5.16.x by this push:
     new 0a1a004  [AMQ-8439] Exclude camel.xml from assembly validateExampleConfig test
0a1a004 is described below

commit 0a1a0046a35cbf90758d421c5c1956e1c27382f5
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Fri Dec 17 10:16:54 2021 +0100

    [AMQ-8439] Exclude camel.xml from assembly validateExampleConfig test
    
    (cherry picked from commit 359b410ffd9082861cea472fb1c85f8bf8c10ac6)
---
 .../src/test/java/org/apache/activemq/config/ValidateXMLConfigTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/assembly/src/test/java/org/apache/activemq/config/ValidateXMLConfigTest.java b/assembly/src/test/java/org/apache/activemq/config/ValidateXMLConfigTest.java
index 438f0ee..87402f9 100644
--- a/assembly/src/test/java/org/apache/activemq/config/ValidateXMLConfigTest.java
+++ b/assembly/src/test/java/org/apache/activemq/config/ValidateXMLConfigTest.java
@@ -51,7 +51,7 @@ public class ValidateXMLConfigTest {
         File sampleConfDir = new File("target/conf");
 
         final HashSet<String> skipped = new HashSet<String>(java.util.Arrays.asList(new String[]{
-            "resin-web.xml", "web.xml"
+            "resin-web.xml", "web.xml", "camel.xml"
         }));
 
         for (File xmlFile : sampleConfDir.listFiles(new FileFilter() {