Skip to content

Commit c8ec914

Browse files
task: Upgrade to Quarkus 3.4.1 (#147)
1 parent df44853 commit c8ec914

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
strategy:
5858
matrix:
59-
quarkus-version: [ 3.0.1.Final, 3.2.2.Final, 3.3.2 ]
59+
quarkus-version: [ 3.0.4.Final, 3.2.6.Final, 3.3.3, 3.4.1 ]
6060
fail-fast: false
6161
steps:
6262
- uses: actions/checkout@v4

core/src/main/java/io/github/project/openubl/xsender/camel/routes/SunatRouteBuilder.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,7 @@ public void configure() {
147147
.setBody(exchange -> {
148148
List<?> body = exchange.getIn().getBody(List.class);
149149
Map<String, Object> map = (Map<String, Object>) body.get(1);
150-
try {
151-
return URISupport.createQueryString(map);
152-
} catch (URISyntaxException e) {
153-
throw new RuntimeException(e);
154-
}
150+
return URISupport.createQueryString(map);
155151
})
156152
.to("https://api-seguridad.sunat.gob.pe")
157153
.unmarshal(new JacksonDataFormat(ResponseAccessTokenSuccessDto.class))

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
<license.dir>${basedir}</license.dir>
4646

4747
<lombok.version>1.18.30</lombok.version>
48-
<quarkus.version>3.3.2</quarkus.version>
49-
<camel.version>4.0.0-M3</camel.version>
48+
<quarkus.version>3.4.1</quarkus.version>
49+
<camel.version>4.0.0</camel.version>
5050
<springboot.version>3.0.6</springboot.version>
5151
</properties>
5252

0 commit comments

Comments
 (0)