/argot-maven-plugin

argot-maven-plugin

Primary LanguageJavaApache License 2.0Apache-2.0

Maven 2 Plugin for processing Argot files

*Author: James Percent

Summary

This is a Maven 2 plugin for processing Argot schema and query files.

Contributors

What’s Argot?

License

This project is licensed under the Apache License Version 2.0

Usage

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

generate

</pre —>