File tree Expand file tree Collapse file tree 5 files changed +37
-5
lines changed
oauth-authorization-server Expand file tree Collapse file tree 5 files changed +37
-5
lines changed Original file line number Diff line number Diff line change 11
11
<parent >
12
12
<groupId >org.springframework.boot</groupId >
13
13
<artifactId >spring-boot-starter-parent</artifactId >
14
- <version >2.2.6.RELEASE </version >
14
+ <version >2.4.10 </version >
15
15
<relativePath />
16
16
</parent >
17
17
66
66
</exclusion >
67
67
</exclusions >
68
68
</dependency >
69
-
69
+
70
70
<!-- config properties processor -->
71
71
<dependency >
72
72
<groupId >org.springframework.boot</groupId >
87
87
<artifactId >rest-assured</artifactId >
88
88
<scope >test</scope >
89
89
</dependency >
90
+
91
+ <dependency >
92
+ <groupId >org.junit.vintage</groupId >
93
+ <artifactId >junit-vintage-engine</artifactId >
94
+ <scope >test</scope >
95
+ </dependency >
90
96
</dependencies >
91
97
92
98
<build >
Original file line number Diff line number Diff line change 2
2
port : 8083
3
3
4
4
spring :
5
+ jpa :
6
+ defer-datasource-initialization : true
5
7
datasource :
6
8
username : sa
7
9
url : jdbc:h2:mem:customdb
Original file line number Diff line number Diff line change 11
11
<parent >
12
12
<groupId >org.springframework.boot</groupId >
13
13
<artifactId >spring-boot-starter-parent</artifactId >
14
- <version >2.2.6.RELEASE </version >
14
+ <version >2.5.4 </version >
15
15
<relativePath /> <!-- lookup parent from repository -->
16
16
</parent >
17
17
60
60
<scope >test</scope >
61
61
</dependency >
62
62
63
+ <dependency >
64
+ <groupId >org.junit.vintage</groupId >
65
+ <artifactId >junit-vintage-engine</artifactId >
66
+ <scope >test</scope >
67
+ </dependency >
68
+
63
69
</dependencies >
64
70
65
71
<build >
Original file line number Diff line number Diff line change 1
- server :
1
+ server :
2
2
port : 8081
3
- servlet :
3
+ servlet :
4
4
context-path : /resource-server
5
5
6
6
# ###### resource server configuration properties
7
7
spring :
8
+ jpa :
9
+ defer-datasource-initialization : true
8
10
security :
9
11
oauth2 :
10
12
resourceserver :
Original file line number Diff line number Diff line change 8
8
<version >0.1.0-SNAPSHOT</version >
9
9
<packaging >pom</packaging >
10
10
11
+ <dependencyManagement >
12
+ <dependencies >
13
+ <dependency >
14
+ <groupId >org.junit.vintage</groupId >
15
+ <artifactId >junit-vintage-engine</artifactId >
16
+ <scope >test</scope >
17
+ <exclusions >
18
+ <exclusion >
19
+ <groupId >org.hamcrest</groupId >
20
+ <artifactId >hamcrest-core</artifactId >
21
+ </exclusion >
22
+ </exclusions >
23
+ </dependency >
24
+ </dependencies >
25
+ </dependencyManagement >
26
+
11
27
<modules >
12
28
<module >oauth-authorization-server</module >
13
29
<module >oauth-resource-server</module >
You can’t perform that action at this time.
0 commit comments