*Author: James Percent
This is a Maven 2 plugin for processing Argot schema and query files.
This project is licensed under the Apache License Version 2.0
Type “mvn install” to install the plugin into your local maven repository.
To use the plugin you’ll need something like the following in your Argot project pom.xml file. The plugin will compile Argot *.argot files.
<plugin>
<groupId>org.syndeticlogic</groupId>
<artifactId>argot-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
${project.build.directory}/generated-sources/argot
${project.build.directory}/classes
</pre —>