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 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
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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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 ))
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments