0

I have a Maven-JAX-RS project written in java and using enunciate to automatically generate docs with every build. So far, it works well - he generates api-docs for all REST-Endpoints in my project.

Now i have written some util-classes with useful jdoc too - but these classes are not Endpoints - so, enunciate will not include them.

Is there any way to tell enunciate, that he should generate additional docs with the jdoc of some additional classes? I thought there should be a way to manually configure that in enunciate.xml, but i can't find a working solution...

jebbie
  • 1,418
  • 3
  • 17
  • 27

1 Answers1

0

Have you tried importing the class as described in Enunciate: Multi-Module Projects?

Ryan Heaton
  • 1,173
  • 7
  • 11
  • yes i tried that, did not work - or at least, i could not find the jdoc anywhere of this custom included class in the resulting html :) – jebbie Jul 17 '13 at 07:57
  • Huh. You may also need to use the api-classes configuration element: – Ryan Heaton Jul 18 '13 at 17:48