File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed
src/main/java/io/github/project/openubl/xsender/camel/routes Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 56
56
runs-on : ubuntu-latest
57
57
strategy :
58
58
matrix :
59
- quarkus-version : [ 3.0.1.Final ]
59
+ quarkus-version : [ 3.0.1.Final, 3.2.2.Final ]
60
60
fail-fast : false
61
61
steps :
62
62
- uses : actions/checkout@v3
96
96
runs-on : ubuntu-latest
97
97
strategy :
98
98
matrix :
99
- springboot-version : [ 3.0.0 ]
99
+ springboot-version : [ 3.0.0, 3.1.2 ]
100
100
fail-fast : false
101
101
steps :
102
102
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 100
100
<artifactId >camel-jackson</artifactId >
101
101
</dependency >
102
102
103
+ <dependency >
104
+ <groupId >commons-codec</groupId >
105
+ <artifactId >commons-codec</artifactId >
106
+ <version >1.16.0</version >
107
+ </dependency >
108
+
103
109
<dependency >
104
110
<groupId >org.apache.camel</groupId >
105
111
<artifactId >camel-test-main-junit5</artifactId >
Original file line number Diff line number Diff line change @@ -147,11 +147,7 @@ public void configure() {
147
147
.setBody (exchange -> {
148
148
List <?> body = exchange .getIn ().getBody (List .class );
149
149
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 );
155
151
})
156
152
.to ("https://api-seguridad.sunat.gob.pe" )
157
153
.unmarshal (new JacksonDataFormat (ResponseAccessTokenSuccessDto .class ))
Original file line number Diff line number Diff line change 45
45
<license .dir>${basedir} </license .dir>
46
46
47
47
<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>
51
51
</properties >
52
52
53
53
<url >https://project-openubl.github.io/</url >
You can’t perform that action at this time.
0 commit comments