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

jlmonteiro pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/jakartaee9-tck by this push:
     new 1364faf  Make sure to include plume jars for plume container
1364faf is described below

commit 1364faf90ef2403816863b107ae51fb401841c83
Author: Jean-Louis Monteiro <jlmonte...@tomitribe.com>
AuthorDate: Thu Jun 10 14:08:25 2021 +0200

    Make sure to include plume jars for plume container
---
 src/test/script/openejb/tck/commands/CommandSupport.groovy | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/test/script/openejb/tck/commands/CommandSupport.groovy 
b/src/test/script/openejb/tck/commands/CommandSupport.groovy
index bf47bdf..0e0e099 100644
--- a/src/test/script/openejb/tck/commands/CommandSupport.groovy
+++ b/src/test/script/openejb/tck/commands/CommandSupport.groovy
@@ -202,7 +202,12 @@ abstract class CommandSupport {
         builder.append("jakarta.mail*.jar")
         builder.append("jakarta.activation-*.jar")
         builder.append("jakartaee-api-*.jar")
-        builder.append("jakarta.faces-*.jar")
+
+        // only for plume
+        if (webcontainer.contains("plume")) {
+            builder.append("jakarta.faces-*.jar")
+        }
+
         builder.append("jakarta.xml.bind-api-*.jar")
         builder.append("jaspic-api.jar")
         builder.append("jsp-api.jar")

Reply via email to