Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit 39461fa

Browse files
committed
Let Boot Manage JAXB
Fixes: gh-151
1 parent 7dbf566 commit 39461fa

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

gradle/dependency-management.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ dependencyManagement {
33
mavenBom "org.springframework.boot:spring-boot-parent:$springBootVersion"
44
}
55
dependencies {
6-
dependency 'com.sun.xml.bind:jaxb-core:2.3.0.1'
7-
dependency 'com.sun.xml.bind:jaxb-impl:2.3.0.1'
8-
dependency 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
9-
106
dependency "org.springframework.boot:spring-boot:$springBootVersion"
117
dependency 'org.springframework.security.oauth:spring-security-oauth2:2.3.5.RELEASE'
128
dependency 'org.springframework.security:spring-security-jwt:1.0.10.RELEASE'

spring-security-oauth2-autoconfigure/spring-security-oauth2-autoconfigure.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,15 @@ dependencies {
99
compile 'org.springframework.security:spring-security-jwt'
1010
compile 'com.fasterxml.jackson.core:jackson-annotations'
1111
compile 'com.fasterxml.jackson.core:jackson-databind'
12-
1312
compile 'javax.xml.bind:jaxb-api'
14-
compile 'com.sun.xml.bind:jaxb-core'
15-
compile 'com.sun.xml.bind:jaxb-impl'
1613

1714
optional "org.springframework.boot:spring-boot-configuration-processor"
1815
optional 'org.springframework.social:spring-social-config'
1916
optional 'org.springframework.social:spring-social-core'
2017
optional 'org.springframework.social:spring-social-web'
2118

19+
runtime 'org.glassfish.jaxb:jaxb-runtime'
20+
2221
provided 'javax.servlet:javax.servlet-api'
2322

2423
testCompile 'org.springframework.boot:spring-boot-test'

0 commit comments

Comments
 (0)