Using autodoc to generate documentation for downstream project #290
-
I am trying to use the autodoc extension to generate documentation for my downstream project (which has a similar structure as the template project: https://github.com/eclipse-edc/Template-Basic). I have some runtimes together with custom extensions. Basically I would like to generate autodoc manifests for my runtimes, which should include both the manifests from my own custom extensions as well as any manifests from EDC modules that the runtimes depend on, so that I can create markdown files using My assumption is that if I execute the
I am using version 0.10.0 of the EDC-build plugin. I have read https://eclipse-edc.github.io/documentation/for-contributors/autodoc/, but this did not help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
try this: in your root project execute: ./gradlew autodoc # to generate the autodoc manifest in every of your modules
./gradlew downloadManifests # to obtain autodoc manifests from upstream EDC modules. They are available as Maven artifacts
./gradlew mergeManifests # to merge them with your own modules this should put the merged autodoc manifest in |
Beta Was this translation helpful? Give feedback.
this exact use case worked, at least at some point in the past. we did recently refactor the plugins a bit, and it is always possible, that something internal to the Gradle API changed. In any event, i'll create a bug issue for this, because something clearly isn't working here.
Thanks for raising!