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 56
56
runs-on : ubuntu-latest
57
57
strategy :
58
58
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 ]
60
60
fail-fast : false
61
61
steps :
62
62
- uses : actions/checkout@v4
96
96
runs-on : ubuntu-latest
97
97
strategy :
98
98
matrix :
99
- springboot-version : [ 3.0.0, 3.1.2 ]
99
+ springboot-version : [ 3.0.0, 3.1.3 ]
100
100
fail-fast : false
101
101
steps :
102
102
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -147,7 +147,11 @@ 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
- return URISupport .createQueryString (map );
150
+ try {
151
+ return URISupport .createQueryString (map );
152
+ } catch (URISyntaxException e ) {
153
+ throw new RuntimeException (e );
154
+ }
151
155
})
152
156
.to ("https://api-seguridad.sunat.gob.pe" )
153
157
.unmarshal (new JacksonDataFormat (ResponseAccessTokenSuccessDto .class ))
Original file line number Diff line number Diff line change 37
37
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
38
38
39
39
<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>
42
42
<maven-javadoc-plugin .version>3.5.0</maven-javadoc-plugin .version>
43
43
<maven-gpg-plugin .version>3.1.0</maven-gpg-plugin .version>
44
44
45
45
<license .dir>${basedir} </license .dir>
46
46
47
47
<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>
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