Re: [ant] branch master updated: add java.security.manager=allow while launching against Java 19

2022-02-06 Thread Stefan Bodewig
On 2022-02-07, wrote: > - if [ "$JAVA_SPEC_VERSION" = "java.specification.version=18" ]; then > + if [ "$JAVA_SPEC_VERSION" = "java.specification.version=18" ] || [ > "$JAVA_SPEC_VERSION" = "java.specification.version=19" ]; then Bourne shell's case may make this more readable (not sure whether

Re: JDK 18 Rampdown Phase 2 & JDK 19 Early-Access Builds

2022-02-06 Thread Jaikiran Pai
Hello David, I ran the Java 18 build 18-ea+34-2083 and Java 19 build 19-ea+8-441 against our Ant testsuite on a Linux setup and we observed no regressions, except security manager exceptions. We had to do changes to our Ant launch command to get past the security manager runtime exceptions th