<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/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
      <groupId>org.jboss.forge</groupId>
      <artifactId>java-parser-parent</artifactId>
      <version>1.0.0.Alpha1</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>java-parser-impl</artifactId>
   <name>Forge - Java Parser Implementation</name>
   <dependencies>
      <dependency>
         <groupId>org.jboss.forge</groupId>
         <artifactId>java-parser-api</artifactId>
      </dependency>

      <dependency>
         <groupId>org.eclipse.tycho</groupId>
         <artifactId>org.eclipse.jdt.core</artifactId>
         <version>3.8.2.v20120814-155456</version>
      </dependency>

      <dependency>
         <groupId>org.eclipse.core</groupId>
         <artifactId>resources</artifactId>
         <version>3.3.0-v20070604</version>
         <exclusions>
            <exclusion>
               <groupId>org.eclipse.core</groupId>
               <artifactId>expressions</artifactId>
            </exclusion>
            <exclusion>
               <groupId>org.eclipse.core</groupId>
               <artifactId>filesystem</artifactId>
            </exclusion>
            <exclusion>
               <groupId>org.eclipse.core</groupId>
               <artifactId>runtime</artifactId>
            </exclusion>
         </exclusions>
      </dependency>

      <dependency>
         <groupId>org.eclipse.core</groupId>
         <artifactId>runtime</artifactId>
         <version>3.3.100-v20070530</version>
         <exclusions>
            <exclusion>
               <groupId>org.eclipse.equinox</groupId>
               <artifactId>registry</artifactId>
            </exclusion>
            <exclusion>
               <groupId>org.eclipse.equinox</groupId>
               <artifactId>app</artifactId>
            </exclusion>
         </exclusions>
      </dependency>

      <dependency>
         <groupId>org.eclipse</groupId>
         <artifactId>text</artifactId>
         <version>3.3.0-v20070606-0010</version>
         <exclusions>
            <exclusion>
               <groupId>org.eclipse.core</groupId>
               <artifactId>commands</artifactId>
            </exclusion>
            <exclusion>
               <groupId>org.eclipse.equinox</groupId>
               <artifactId>common</artifactId>
            </exclusion>
         </exclusions>
      </dependency>
   </dependencies>
</project>

