Skip to content

Commit 0b4306a

Browse files
committed
Bump quarkus plugin
1 parent c6523bd commit 0b4306a

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

pom.xml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<artifactId>scala3-compiler_3</artifactId>
8181
<version>${scala.version}</version>
8282
</dependency>
83+
<!-- ######## Scala 3 libraries for sttp client and Zio examples ######## -->
8384
<dependency>
8485
<groupId>com.softwaremill.sttp.client3</groupId>
8586
<artifactId>core_3</artifactId>
@@ -90,12 +91,12 @@
9091
<artifactId>zio_3</artifactId>
9192
<version>2.1.20</version>
9293
</dependency>
93-
<!-- ######## Quarkus Jackson and Scala Integration ######## -->
94+
<!-- ######## Quarkus lib for Jackson - Scala Integration ######## -->
9495
<dependency>
9596
<groupId>com.fasterxml.jackson.module</groupId>
9697
<artifactId>jackson-module-scala_3</artifactId>
9798
</dependency>
98-
<!-- ######## Quarkus Kafka #### -->
99+
<!-- ######## Quarkus Kafka ######## -->
99100
<dependency>
100101
<groupId>io.quarkus</groupId>
101102
<artifactId>quarkus-messaging-kafka</artifactId>
@@ -104,44 +105,43 @@
104105
<groupId>io.quarkus</groupId>
105106
<artifactId>quarkus-quartz</artifactId>
106107
</dependency>
107-
<!-- ######## Quarkus Health Check Endpoints ######## -->
108108
<dependency>
109109
<groupId>io.smallrye.reactive</groupId>
110110
<artifactId>smallrye-reactive-messaging-in-memory</artifactId>
111111
<scope>test</scope>
112112
</dependency>
113-
<!-- ######## Hibernate ORM specific dependencies ######## -->
113+
<!-- ######## Quarkus Health Check Endpoints ######## -->
114114
<dependency>
115115
<groupId>io.quarkus</groupId>
116116
<artifactId>quarkus-smallrye-health</artifactId>
117117
</dependency>
118-
<!-- JDBC driver dependencies -->
118+
<!-- ######## Hibernate ORM specific dependencies ######## -->
119119
<dependency>
120120
<groupId>io.quarkus</groupId>
121121
<artifactId>quarkus-hibernate-orm</artifactId>
122122
</dependency>
123-
<!-- Narayana JTA dependencies, added to be more explicit, it is otherwise included because of hibernate-orm extension -->
123+
<!-- JDBC driver dependencies -->
124124
<dependency>
125125
<groupId>io.quarkus</groupId>
126126
<artifactId>quarkus-jdbc-postgresql</artifactId>
127127
</dependency>
128-
<!-- Flyway DB migration specific dependencies -->
128+
<!-- Narayana JTA dependencies, added to be more explicit, it is otherwise included because of hibernate-orm extension -->
129129
<dependency>
130130
<groupId>io.quarkus</groupId>
131131
<artifactId>quarkus-narayana-jta</artifactId>
132132
</dependency>
133-
<!-- ######## Scala 3 Magnum DB Library ######## -->
133+
<!-- Flyway DB migration specific dependencies -->
134134
<dependency>
135135
<groupId>io.quarkus</groupId>
136136
<artifactId>quarkus-flyway</artifactId>
137137
</dependency>
138-
<!-- ######## Quarkus JUnit test dependencies ######## -->
138+
<!-- ######## Scala 3 Magnum DB Library ######## -->
139139
<dependency>
140140
<groupId>com.augustnagro</groupId>
141141
<artifactId>magnum_3</artifactId>
142142
<version>1.3.1</version>
143143
</dependency>
144-
<!-- Here we use the latest version of Rest Assured to use the Scala 3 extensions -->
144+
<!-- ######## Quarkus test dependencies ######## -->
145145
<dependency>
146146
<groupId>io.quarkus</groupId>
147147
<artifactId>quarkus-junit5</artifactId>
@@ -152,23 +152,25 @@
152152
<artifactId>rest-assured</artifactId>
153153
<scope>test</scope>
154154
</dependency>
155+
<dependency>
156+
<groupId>org.awaitility</groupId>
157+
<artifactId>awaitility</artifactId>
158+
<scope>test</scope>
159+
</dependency>
160+
<!-- Here we add the Rest Assured Scala 3 extension -->
155161
<dependency>
156162
<groupId>io.rest-assured</groupId>
157163
<artifactId>scala-extensions</artifactId>
158164
<version>5.5.6</version>
159165
<scope>test</scope>
160166
</dependency>
167+
<!-- Jacoco dep to generate test coverage report -->
161168
<dependency>
162169
<groupId>io.quarkus</groupId>
163170
<artifactId>quarkus-jacoco</artifactId>
164171
<scope>test</scope>
165172
</dependency>
166173
<!-- ######## Metrics dependencies ######## -->
167-
<dependency>
168-
<groupId>org.awaitility</groupId>
169-
<artifactId>awaitility</artifactId>
170-
<scope>test</scope>
171-
</dependency>
172174
<dependency>
173175
<groupId>io.quarkus</groupId>
174176
<artifactId>quarkus-smallrye-metrics</artifactId>

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginManagement {
55
mavenLocal()
66
}
77
plugins {
8-
id "io.quarkus" version "3.23.0"
8+
id "io.quarkus" version "3.25.4"
99
}
1010
}
1111

0 commit comments

Comments
 (0)