File tree 6 files changed +3
-70
lines changed
cloudbank-v3/spring-apps-spring3
6 files changed +3
-70
lines changed Original file line number Diff line number Diff line change 17
17
<description >Account Application</description >
18
18
19
19
<properties >
20
- <microprofile-lra-api .version>1.0</microprofile-lra-api .version>
21
- <narayana-lra .version>5.13.1.Final</narayana-lra .version>
22
- <jakarta .enterprise.cdi-api.version>4.0.1</jakarta .enterprise.cdi-api.version>
23
20
<oracle-springboot-starter .version>23.4.0</oracle-springboot-starter .version>
24
21
<liquibase .version>4.24.0</liquibase .version>
25
22
</properties >
29
26
<groupId >org.springframework.boot</groupId >
30
27
<artifactId >spring-boot-starter-data-jpa</artifactId >
31
28
</dependency >
32
- <dependency >
33
- <groupId >org.springframework.boot</groupId >
34
- <artifactId >spring-boot-starter-web</artifactId >
35
- </dependency >
36
- <dependency >
37
- <groupId >org.springframework.cloud</groupId >
38
- <artifactId >spring-cloud-starter-netflix-eureka-client</artifactId >
39
- </dependency >
40
29
<dependency >
41
30
<groupId >com.oracle.database.spring</groupId >
42
31
<artifactId >oracle-spring-boot-starter-ucp</artifactId >
71
60
<plugin >
72
61
<groupId >org.springframework.boot</groupId >
73
62
<artifactId >spring-boot-maven-plugin</artifactId >
74
- <configuration >
75
- <excludes >
76
- <exclude >
77
- <groupId >org.projectlombok</groupId >
78
- <artifactId >lombok</artifactId >
79
- </exclude >
80
- </excludes >
81
- </configuration >
82
63
</plugin >
83
64
<plugin >
84
65
<groupId >org.graalvm.buildtools</groupId >
93
74
<plugin >
94
75
<groupId >org.liquibase</groupId >
95
76
<artifactId >liquibase-maven-plugin</artifactId >
77
+ <version >${liquibase.version} </version >
96
78
</plugin >
97
79
</plugins >
98
80
</build >
Original file line number Diff line number Diff line change 50
50
<plugin >
51
51
<groupId >org.springframework.boot</groupId >
52
52
<artifactId >spring-boot-maven-plugin</artifactId >
53
- <configuration >
54
- <excludes >
55
- <exclude >
56
- <groupId >org.projectlombok</groupId >
57
- <artifactId >lombok</artifactId >
58
- </exclude >
59
- </excludes >
60
- </configuration >
61
53
</plugin >
62
54
<plugin >
63
55
<groupId >org.graalvm.buildtools</groupId >
Original file line number Diff line number Diff line change 51
51
<plugin >
52
52
<groupId >org.springframework.boot</groupId >
53
53
<artifactId >spring-boot-maven-plugin</artifactId >
54
- <configuration >
55
- <excludes >
56
- <exclude >
57
- <groupId >org.projectlombok</groupId >
58
- <artifactId >lombok</artifactId >
59
- </exclude >
60
- </excludes >
61
- </configuration >
62
54
</plugin >
63
55
<plugin >
64
56
<groupId >org.graalvm.buildtools</groupId >
73
65
<plugin >
74
66
<groupId >org.liquibase</groupId >
75
67
<artifactId >liquibase-maven-plugin</artifactId >
68
+ <version >${liquibase.version} </version >
76
69
</plugin >
77
70
</plugins >
78
71
</build >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >org.springframework.boot</groupId >
10
10
<artifactId >spring-boot-starter-parent</artifactId >
11
- <version >3.1.3 </version > <!-- Do not upgrade, breaks native compile -- >
11
+ <version >3.1.5 </version >
12
12
<relativePath /> <!-- lookup parent from repository -->
13
13
</parent >
14
14
60
60
<groupId >org.springframework.cloud</groupId >
61
61
<artifactId >spring-cloud-starter-netflix-eureka-client</artifactId >
62
62
</dependency >
63
- <!-- <dependency>
64
- <groupId>org.springframework.boot</groupId>
65
- <artifactId>spring-boot-starter-log4j2</artifactId>
66
- </dependency> -->
67
63
<dependency >
68
64
<groupId >org.projectlombok</groupId >
69
65
<artifactId >lombok</artifactId >
70
66
</dependency >
71
- <!-- Will not work with Spring Boot 3.x
72
- <dependency>
73
- <groupId>org.springframework.cloud</groupId>
74
- <artifactId>spring-cloud-sleuth-zipkin</artifactId>
75
- </dependency>
76
- <dependency>
77
- <groupId>org.springframework.cloud</groupId>
78
- <artifactId>spring-cloud-starter-sleuth</artifactId>
79
- </dependency>
80
- -->
81
67
<dependency >
82
68
<groupId >org.springframework.boot</groupId >
83
69
<artifactId >spring-boot-starter-test</artifactId >
109
95
<plugin >
110
96
<groupId >org.springframework.boot</groupId >
111
97
<artifactId >spring-boot-maven-plugin</artifactId >
112
- <configuration >
113
- <excludes >
114
- <exclude >
115
- <groupId >org.projectlombok</groupId >
116
- <artifactId >lombok</artifactId >
117
- </exclude >
118
- </excludes >
119
- </configuration >
120
98
</plugin >
121
99
<plugin >
122
100
<groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 38
38
<plugin >
39
39
<groupId >org.springframework.boot</groupId >
40
40
<artifactId >spring-boot-maven-plugin</artifactId >
41
- <configuration >
42
- <excludes >
43
- <exclude >
44
- <groupId >org.projectlombok</groupId >
45
- <artifactId >lombok</artifactId >
46
- </exclude >
47
- </excludes >
48
- </configuration >
49
41
</plugin >
50
42
<plugin >
51
43
<groupId >org.graalvm.buildtools</groupId >
Original file line number Diff line number Diff line change 23
23
</properties >
24
24
25
25
<dependencies >
26
- <dependency >
27
- <groupId >org.springframework.cloud</groupId >
28
- <artifactId >spring-cloud-starter-netflix-eureka-client</artifactId >
29
- </dependency >
30
26
<dependency >
31
27
<groupId >com.oracle.microtx.lra</groupId >
32
28
<artifactId >microtx-lra-spring-boot-starter-jakarta</artifactId >
You can’t perform that action at this time.
0 commit comments