File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed
core/src/main/java/io/github/project/openubl/xsender/camel/routes Expand file tree Collapse file tree 3 files changed +12
-8
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, 3.2.2.Final ]
59+ quarkus-version : [ 3.0.1.Final, 3.2.2.Final, 3.3.2 ]
6060 fail-fast : false
6161 steps :
6262 - uses : actions/checkout@v4
9696 runs-on : ubuntu-latest
9797 strategy :
9898 matrix :
99- springboot-version : [ 3.0.0, 3.1.2 ]
99+ springboot-version : [ 3.0.0, 3.1.3 ]
100100 fail-fast : false
101101 steps :
102102 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -147,7 +147,11 @@ 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- return URISupport .createQueryString (map );
150+ try {
151+ return URISupport .createQueryString (map );
152+ } catch (URISyntaxException e ) {
153+ throw new RuntimeException (e );
154+ }
151155 })
152156 .to ("https://api-seguridad.sunat.gob.pe" )
153157 .unmarshal (new JacksonDataFormat (ResponseAccessTokenSuccessDto .class ))
Original file line number Diff line number Diff line change 3737 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
3838
3939 <compiler-plugin .version>3.11.0</compiler-plugin .version>
40- <surefire-plugin .version>3.1.2 </surefire-plugin .version>
41- <maven-source-plugin .version>3.3.0 </maven-source-plugin .version>
40+ <surefire-plugin .version>3.0.0 </surefire-plugin .version>
41+ <maven-source-plugin .version>3.2.1 </maven-source-plugin .version>
4242 <maven-javadoc-plugin .version>3.5.0</maven-javadoc-plugin .version>
4343 <maven-gpg-plugin .version>3.1.0</maven-gpg-plugin .version>
4444
4545 <license .dir>${basedir} </license .dir>
4646
4747 <lombok .version>1.18.26</lombok .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>
48+ <quarkus .version>3.3.2 </quarkus .version>
49+ <camel .version>4.0.0-M3 </camel .version>
50+ <springboot .version>3.0.6 </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