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

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-tck.git

commit 7e3231c773c70caade82f91d3f1cdd55705c5363
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Mar 27 09:31:51 2024 +0000

    Servlet TCK now requires an slf4j implementation to be configured
---
 pom.xml             | 5 +++++
 servlet-tck/pom.xml | 4 ++++
 2 files changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index 0613af1..312a61f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,6 +79,11 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <dependency>
+                <groupId>org.slf4j</groupId>
+                <artifactId>slf4j-simple</artifactId>
+                <version>2.0.12</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
diff --git a/servlet-tck/pom.xml b/servlet-tck/pom.xml
index 2f4d2a7..f691a10 100644
--- a/servlet-tck/pom.xml
+++ b/servlet-tck/pom.xml
@@ -84,6 +84,10 @@
             <artifactId>junit</artifactId>
             <version>4.13.2</version>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+        </dependency>
     </dependencies>
 
     <build>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to