File tree 3 files changed +17
-3
lines changed
core/src/main/java/io/undertow/util
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 59
59
matrix :
60
60
os : [ubuntu-latest, windows-latest, macos-latest]
61
61
module : [core, servlet, websockets-jsr]
62
- jdk : [11, 17]
62
+ jdk : [11, 17, 21 ]
63
63
openjdk_impl : [ temurin ]
64
64
steps :
65
65
- name : Update hosts - linux
Original file line number Diff line number Diff line change @@ -581,4 +581,8 @@ public boolean addAll(final Collection<? extends String> c) {
581
581
}
582
582
return !c .isEmpty ();
583
583
}
584
+
585
+ public HeaderValues reversed () {
586
+ throw new UnsupportedOperationException ();
587
+ }
584
588
}
Original file line number Diff line number Diff line change 87
87
<spotbugs .exclude.filter.file>../spotbugs-exclude.xml</spotbugs .exclude.filter.file>
88
88
89
89
<!-- Surefire args -->
90
+ <modular .jdk.props></modular .jdk.props>
90
91
<surefire .jpda.args/>
91
- <surefire .system.args>-ea ${surefire.jpda.args} -Xmx1024m</surefire .system.args>
92
+ <surefire .system.args>-ea ${surefire.jpda.args} -Xmx1024m ${modular.jdk.props} </surefire .system.args>
92
93
<!-- by default run all tests-->
93
94
<test .categories>io.undertow.testutils.category.UnitTest OR NOT io.undertow.testutils.category.UnitTest</test .categories>
94
95
632
633
<module >karaf</module >
633
634
</modules >
634
635
</profile >
635
- </profiles >
636
636
637
+ <profile >
638
+ <id >jdk18</id >
639
+ <activation >
640
+ <jdk >[18,)</jdk >
641
+ </activation >
642
+ <properties >
643
+ <modular .jdk.props>-Djava.security.manager=allow</modular .jdk.props>
644
+ </properties >
645
+ </profile >
646
+ </profiles >
637
647
</project >
You can’t perform that action at this time.
0 commit comments