Skip to content

Commit 4994632

Browse files
task: Upgrade to Quarkus 3.2.2.Final (#130)
1 parent 48840d2 commit 4994632

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
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 ]
59+
quarkus-version: [ 3.0.1.Final, 3.2.2.Final ]
6060
fail-fast: false
6161
steps:
6262
- uses: actions/checkout@v3
@@ -96,7 +96,7 @@ jobs:
9696
runs-on: ubuntu-latest
9797
strategy:
9898
matrix:
99-
springboot-version: [ 3.0.0 ]
99+
springboot-version: [ 3.0.0, 3.1.2 ]
100100
fail-fast: false
101101
steps:
102102
- uses: actions/checkout@v3

core/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,12 @@
100100
<artifactId>camel-jackson</artifactId>
101101
</dependency>
102102

103+
<dependency>
104+
<groupId>commons-codec</groupId>
105+
<artifactId>commons-codec</artifactId>
106+
<version>1.16.0</version>
107+
</dependency>
108+
103109
<dependency>
104110
<groupId>org.apache.camel</groupId>
105111
<artifactId>camel-test-main-junit5</artifactId>

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
<license.dir>${basedir}</license.dir>
4646

4747
<lombok.version>1.18.26</lombok.version>
48-
<quarkus.version>3.0.2.Final</quarkus.version>
49-
<camel.version>4.0.0-M3</camel.version>
50-
<springboot.version>3.0.6</springboot.version>
48+
<quarkus.version>3.2.2.Final</quarkus.version>
49+
<camel.version>4.0.0-RC2</camel.version>
50+
<springboot.version>3.1.2</springboot.version>
5151
</properties>
5252

5353
<url>https://project-openubl.github.io/</url>

0 commit comments

Comments
 (0)