<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <artifactId>gt2-maven</artifactId>
    <groupId>org.geotools</groupId>
    <version>2.2.3-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.geotools</groupId>
  <artifactId>gt2-jjtree-javacc</artifactId>
  <packaging>maven-plugin</packaging>
  <name>JJTree and JavaCC compilers plugin</name>
  <version>2.2.3-SNAPSHOT</version>
  <description>This Maven plugin run 'jjtree' on a set of .jjt files found in the source
    directory, which generates a set of .jj files. Next, this plugin executes
    'javacc' on those .jj files in order to generate the .java files. All
    generated files are stored in a 'target/generated-sources' directory and
    are part of the compilation phase.</description>
  <url>http://maven.geotools.fr/reports/jjtree-javacc</url>
  <developers>
    <developer>
      <id>desruisseaux</id>
      <name>Martin Desruisseaux</name>
      <email>desruisseaux@users.sourceforge.net</email>
      <organization>Institut de Recherche pour le D�veloppement (IRD)</organization>
      <roles>
        <role>Java Developer</role>
        <role>Project Management Committee (PMC) Member</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:svn:http://svn.geotools.org/geotools/branches/2.2.x/maven/jjtree-javacc</connection>
    <url>http://svn.geotools.org/geotools/branches/2.2.x/maven/jjtree-javacc</url>
    <developerConnection>scm:svn:http://svn.geotools.org/geotools/branches/2.2.x/gt2-maven/gt2-jjtree-javacc</developerConnection>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-compiler-api</artifactId>
      <version>1.5.1</version>
    </dependency>
    <dependency>
      <groupId>javacc</groupId>
      <artifactId>javacc</artifactId>
      <version>3.2</version>
    </dependency>
  </dependencies>
</project>