From: Mike C. <mc...@us...> - 2024-03-08 20:42:08
|
--- **[patches:#634] Build failing due to JavaDoc linting under recent OpenJDK 19+ (except Ubuntu)** **Status:** open **Group:** **Created:** Fri Mar 08, 2024 08:42 PM UTC by Mike Clark **Last Updated:** Fri Mar 08, 2024 08:42 PM UTC **Owner:** nobody **Attachments:** - [build.xml_javadoc.patch](https://sourceforge.net/p/jedit/patches/634/attachment/build.xml_javadoc.patch) (4.4 kB; text/plain) Build is failing due to JavaDoc linting under recent OpenJDK 19+ (except Ubuntu). This patch is on one file, build.xml: * disables JavaDoc linting in build.xml * moved the core of target `generate-javadoc` to a new target `nodeps-generate-javadoc`. This new target can be run standalone (after compiling) which makes it faster to iterate on testing changes to the JavaDoc (in case someone wants to take on fixing the JavaDoc lint errors). * `generate-javadoc` now `<antcall>`s `nodeps-generate-javadoc` where it used to contain the logic inline * the core `compile` classpath is now pulled from a globally defined path id, instead of defining the path inside the target. `compile` was always creating a globally referenceable path id, but that's inconvenient if you want to run or write a target that doesn't call compile. --- Sent from sourceforge.net because jed...@li... is subscribed to https://sourceforge.net/p/jedit/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/jedit/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Alan E. <ez...@us...> - 2025-02-26 03:33:27
|
I tried building with openjdk 22 and I get this: compile: [depend] Deleted 1 out of date files in 1 seconds [javac] Compiling 585 source files to /home/ezust/workspace/jedit/trunk/build/classes/core [javac] error: release version 11 not supported [javac] Usage: javac <options> <source files> [javac] use --help for a list of possible options BUILD FAILED /home/ezust/workspace/jedit/trunk/build.xml:247: Compile failed; see the compiler error output for details. --- **[patches:#634] Build failing due to JavaDoc linting under recent OpenJDK 19+ (except Ubuntu)** **Status:** open **Group:** **Created:** Fri Mar 08, 2024 08:42 PM UTC by Mike Clark **Last Updated:** Fri Mar 08, 2024 08:42 PM UTC **Owner:** nobody **Attachments:** - [build.xml_javadoc.patch](https://sourceforge.net/p/jedit/patches/634/attachment/build.xml_javadoc.patch) (4.4 kB; text/plain) Build is failing due to JavaDoc linting under recent OpenJDK 19+ (except Ubuntu). This patch is on one file, build.xml: * disables JavaDoc linting in build.xml * moved the core of target `generate-javadoc` to a new target `nodeps-generate-javadoc`. This new target can be run standalone (after compiling) which makes it faster to iterate on testing changes to the JavaDoc (in case someone wants to take on fixing the JavaDoc lint errors). * `generate-javadoc` now `<antcall>`s `nodeps-generate-javadoc` where it used to contain the logic inline * the core `compile` classpath is now pulled from a globally defined path id, instead of defining the path inside the target. `compile` was always creating a globally referenceable path id, but that's inconvenient if you want to run or write a target that doesn't call compile. --- Sent from sourceforge.net because jed...@li... is subscribed to https://sourceforge.net/p/jedit/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/jedit/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |