Skip to content

Commit

Permalink
Add SLF4J to Jetty (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez authored Jul 12, 2024
1 parent b5de627 commit 88acc43
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
11 changes: 11 additions & 0 deletions bom/tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

<!-- Jetty -->
<version.jetty>11.0.7</version.jetty>
<version.slf4j>2.0.13</version.slf4j>

<!-- MicroProfile -->
<version.jakarta.annotation>2.1.1</version.jakarta.annotation>
Expand Down Expand Up @@ -96,6 +97,16 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${version.slf4j}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j}</version>
</dependency>

<!-- Jakarta Core Profile -->
<dependency>
Expand Down
16 changes: 11 additions & 5 deletions tck/jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
<artifactId>smallrye-testing-tck-jetty</artifactId>
<name>SmallRye Testing: TCK Jetty</name>

<properties>
<artifactId.arquillian.jetty>arquillian-jetty-embedded-11</artifactId.arquillian.jetty>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -54,7 +50,7 @@
<!-- Jetty -->
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>${artifactId.arquillian.jetty}</artifactId>
<artifactId>arquillian-jetty-embedded-11</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down Expand Up @@ -113,6 +109,16 @@
<artifactId>resteasy-json-binding-provider</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down

0 comments on commit 88acc43

Please sign in to comment.