This project is dead as the code has been merged into the LAPPS Annotations Project. The repository remains for historical reasons only.
Annotation processor used to generate the JSON metadata for LAPPS services.
See the LAPPS Annotations Project for information on annotating Java classes with the LAPPS annotations to generate metadata in JSON.
<groupId>org.lappsgrid.experimental</groupId>
<artifactId>annotation-processor</artifactId>
<version>1.0.0-SNAPSHOT</version>
The Java compiler must be configured to invoke the LAPPS annotation processor during compilation.
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessors>
<annotationProcessor>org.lappsgrid.experimental.annotation.processing.MetadataProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>