Re: tld generator

2022-04-14 Thread Greg Huber
Martin, I had three ways of generating the tlds, this was one of them. They all use the com.sun.javadoc API which has been rewritten, and now not convertible. from the migration guide: https://docs.oracle.com/en/java/javase/11/docs/api/jdk.javadoc/jdk/javadoc/doclet/package-summary.html Man

Re: tld generator

2022-04-14 Thread Greg Huber
Lucky struts never went down this path. Is the Struts Annotations freemarker based? The POM uses the maven-compiler-plugin and No maven-javadoc-plugin?? On 14/04/2022 06:36, Lukasz Lenart wrote: There is also Tiles Autotag project, yet I never used it (there was a plan to use it instead Struts

Re: tld generator

2022-04-14 Thread Antonio Petrelli
Il giorno gio 14 apr 2022 alle ore 07:36 Lukasz Lenart < lukaszlen...@apache.org> ha scritto: > There is also Tiles Autotag project, yet I never used it (there was a > plan to use it instead Struts Annotations) > https://tiles.apache.org/tiles-autotag/index.html > > Hello just to clarify what Tile

Re: tld generator

2022-04-14 Thread Lukasz Lenart
czw., 14 kwi 2022 o 09:26 Greg Huber napisał(a): > > Lucky struts never went down this path. > > Is the Struts Annotations freemarker based? No, it just uses two templates to generate html description files, the core is pure annotation based. I migrated it from APT to pure annotation processing s

Re: tld generator

2022-04-14 Thread Greg Huber
Fantastic😁😁 it works, all I get is an extra dynamic-attributes tag, but I can remove this with a ant task.               StatusMessage org.me.tags.StatusMessageTag     empty     false   On 14/04/2022 09:41, Lukasz Lenart wrote: czw., 14 kwi 2022 o 09:26 Greg Huber napisał(a): Lucky

Re: tld generator

2022-04-14 Thread Martin Gainty
Apologies Greg, it appears 2011 tldgen does not yet accomodate javax.lang.model and com.sun.source API types for Java 11 I'll propose that suggestion but for now we may need hard conversion types for generated source (assuming the class names are spot on..which they probably are not) Thanks fo