Skip to content

Commit

Permalink
task: Upgrade to Quarkus 3.2.2.Final (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored Aug 1, 2023
1 parent 48840d2 commit 4994632
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
quarkus-version: [ 3.0.1.Final ]
quarkus-version: [ 3.0.1.Final, 3.2.2.Final ]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
springboot-version: [ 3.0.0 ]
springboot-version: [ 3.0.0, 3.1.2 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 6 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@
<artifactId>camel-jackson</artifactId>
</dependency>

<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.16.0</version>
</dependency>

<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-main-junit5</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,7 @@ public void configure() {
.setBody(exchange -> {
List<?> body = exchange.getIn().getBody(List.class);
Map<String, Object> map = (Map<String, Object>) body.get(1);
try {
return URISupport.createQueryString(map);
} catch (URISyntaxException e) {
throw new RuntimeException(e);
}
return URISupport.createQueryString(map);
})
.to("https://api-seguridad.sunat.gob.pe")
.unmarshal(new JacksonDataFormat(ResponseAccessTokenSuccessDto.class))
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
<license.dir>${basedir}</license.dir>

<lombok.version>1.18.26</lombok.version>
<quarkus.version>3.0.2.Final</quarkus.version>
<camel.version>4.0.0-M3</camel.version>
<springboot.version>3.0.6</springboot.version>
<quarkus.version>3.2.2.Final</quarkus.version>
<camel.version>4.0.0-RC2</camel.version>
<springboot.version>3.1.2</springboot.version>
</properties>

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

0 comments on commit 4994632

Please sign in to comment.