Furthermore, I have two parameters in my component - query and option. Yet
the validation is only complaining about query. Yet both parameters are
documented exactly the same.

On Sat, May 21, 2016 at 10:09 AM, Anton <[email protected]> wrote:

> 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
>
>
>

Reply via email to