Results 26 comments of GeTOUO
trafficstars

Would that cause my generic information and document information to be lost?

好吧,我修改了slate目录下的config.rb 其中一部分内容,以使得在出错的时候提示但并不中断整个文档,以下是我的操作: 1. 拷贝 config.rb 并修改其中的: ``` helpers do require './lib/toc_data.rb' end ``` to ``` helpers do require './lib/toc_data.rb' def partial(template, options = {}, &block) begin super(template, options, &block) rescue...

Yes, but I don't know how to solve this problem. I used [spring-auto-restdocs](https://github.com/ScaCap/spring-auto-restdocs) and a lot of scala case class in my project, the spring-auto-restdocs only parse javadoc. I rely...

I tried 0.11 and 0.13. My POM configuration is as follows: ` net.alchim31.maven scala-maven-plugin 4.1.0 org.apache.maven.plugins maven-compiler-plugin 3.8.1 net.alchim31.maven scala-maven-plugin doc generate-sources compile scala-compile-first process-resources add-source compile scala-test-compile process-test-resources testCompile...

So what should I do?

Thank you for your reply. I uploaded a demo to reproduce the error. Please have a look. [genjavadoc-error-demo](https://github.com/GeTOUO/genjavadoc-error-demo) `https://github.com/GeTOUO/genjavadoc-error-demo.git`

em, In the generated Java class: `static public abstract R apply (T1 v1) ;` `static` and `abstract` are conflicting

Okay, I'll take a look at the links you provide, because using this project is looking to inject other operations into the process of creating Javadoc to generate other data.

I wonder if it is possible for plug-ins to provide an extensible interface that injects scaladoc-like abstractions into the scope of the interface. Then can users define other behaviors or...

Thanks to @SethTisue and @raboof's help. I modified a little Maven configuration to avoid the compilation process. Now I can use this library to generate the data I need. Finally,...