Hello
I am trying to create a custom camel component, but am getting the missing
docs validation error.
However, I do have in my pom:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>apt</artifactId>
<version>2.17.1</version>
</dependency>
and
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-package-maven-plugin</artifactId>
<version>2.17.1</version>
<executions>
<execution>
<id>prepare</id>
<goals>
<goal>prepare-components</goal>
</goals>
<phase>generate-resources</phase>
</execution>
<execution>
<id>validate</id>
<goals>
<goal>validate-components</goal>
</goals>
<phase>prepare-package</phase>
</execution>
</executions>
</plugin>
And my component parameters have java docs.
What am I missing?
Thanks