Skip to content

Commit

Permalink
Spring 2.3.3.RELEASE / Fix missing Jaxb dependency in jwt example
Browse files Browse the repository at this point in the history
  • Loading branch information
jloisel committed Aug 28, 2020
1 parent a2d2ae6 commit 100671f
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<version>2.3.3.RELEASE</version>
</parent>

<groupId>com.octoperf</groupId>
Expand All @@ -33,9 +33,10 @@

<properties>
<commons-lang.version>3.8.1</commons-lang.version>
<guava.version>28.2-jre</guava.version>
<jwt.version>0.9.0</jwt.version>
<joda-time.version>2.10.5</joda-time.version>
<guava.version>29.0-jre</guava.version>
<jaxb.version>2.3.3</jaxb.version>
<jwt.version>0.9.1</jwt.version>
<joda-time.version>2.10.6</joda-time.version>
<junit.version>4.12</junit.version>
<mockito.version>3.2.4</mockito.version>
</properties>
Expand Down Expand Up @@ -96,6 +97,16 @@
<version>${guava.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 100671f

Please sign in to comment.