Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion keycloak/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,28 @@
<version>20.0.0</version>
</parent>

<!-- Required for KeyCloak to run -->
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -55,7 +77,8 @@
<!-- Exclude okhttp-urlconnection to solve split package with okhttp3 -->
<excludeArtifactIds>
keycloak-core,keycloak-server-spi,keycloak-server-spi-private,
keycloak-model-jpa,jboss-logging,commons-logging,jakarta.mail-api
keycloak-model-jpa,jboss-logging,commons-logging,jakarta.mail-api,
okhttp-urlconnection,spring-jcl,logback-classic,jakarta.activation
</excludeArtifactIds>
</configuration>
</execution>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
<junit.version>5.13.3</junit.version>
<junit-platform-launcher.version>1.13.3</junit-platform-launcher.version>
<log4j2.version>2.25.3</log4j2.version>
<logback.version>1.5.18</logback.version>
<maven-javadoc.version>3.12.0</maven-javadoc.version>
<mockito.version>5.21.0</mockito.version>
<okhttp.version>5.3.2</okhttp.version>
Expand Down
Loading