Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.

Commit

Permalink
Upgrade keycloak to 9.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flytreeleft committed Mar 29, 2020
1 parent 8dbb1b9 commit b977074
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

<keycloak.version>4.5.0.Final</keycloak.version>
<keycloak.version>9.0.2</keycloak.version>
</properties>

<issueManagement>
Expand Down Expand Up @@ -95,6 +95,16 @@
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-plugin-api</artifactId>
<scope>provided</scope>
<exclusions>
<!-- To get rid of the error:
Use Import/Export Package directive -split-package:=(merge-first|merge-last|error|first) to get rid of this warning
Package found in [Jar:jakarta.activation, Jar:activation]
-->
<exclusion>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
Expand Down Expand Up @@ -143,7 +153,9 @@
</Import-Package>
<!-- Package all specified class into bundle jar. -->
<Export-Package>
org.keycloak.*
org.keycloak.*,
javax.activation.*,
com.sun.activation.*
</Export-Package>
</instructions>
</configuration>
Expand Down

0 comments on commit b977074

Please sign in to comment.