<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jboss.errai.reflections</groupId>
    <artifactId>reflections-parent</artifactId>
    <version>3.1.1.Final</version>
    <relativePath>../</relativePath>
  </parent>

  <artifactId>reflections</artifactId>
  <packaging>jar</packaging>

  <name>Reflections</name>
  <description>Reflections - a Java runtime metadata analysis</description>
  <url>http://code.google.com/p/reflections/</url>

  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>

    <!-- actually needed only when scanning is done. if using {@link Reflections.collect()} 
      javassist is not needed -->
    <dependency>
      <groupId>org.javassist</groupId>
      <artifactId>javassist</artifactId>
    </dependency>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>

    <!-- effectively needed when XmlSerializer is used -->
    <dependency>
      <groupId>dom4j</groupId>
      <artifactId>dom4j</artifactId>
    </dependency>

    <!-- effectively needed when JsonSerializer is used -->
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <optional>true</optional>
    </dependency>

    <!-- effectively needed when using JBoss6UrlType -->
    <dependency>
      <groupId>org.jboss</groupId>
      <artifactId>jboss-vfs</artifactId>
      <optional>true</optional>
    </dependency>

    <!-- effectively might be needed for war environments -->
    <dependency>
      <groupId>org.jboss.spec.javax.servlet</groupId>
      <artifactId>jboss-servlet-api_3.0_spec</artifactId>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>

    <!-- use any implementation you like -->
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <scope>test</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>

</project>
