<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>zone.src.sheaf</groupId>
    <artifactId>sheaf-parent</artifactId>
    <version>1.4</version>
  </parent>
  <artifactId>java-sheaf</artifactId>
  <version>1.0.2</version>
  <name>${project.groupId}:${project.artifactId}</name>
  <description>Java Utility Classes</description>
  <inceptionYear>2014</inceptionYear>
  
  <scm>
    <connection>scm:git:https://bitbucket.org/src-zone/java-sheaf.git</connection>
    <developerConnection>scm:git:https://bitbucket.org/src-zone/java-sheaf.git</developerConnection>
    <url>https://bitbucket.org/src-zone/java-sheaf.git</url>
    <tag>java-sheaf-1.0.2</tag>
  </scm>
  
  <properties>
    <velocity.version>1.7</velocity.version>
    <velocity.tools.version>2.0</velocity.tools.version>
  </properties>
  
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>zone.src.sheaf</groupId>
        <artifactId>sheaf-deps-bom</artifactId>
        <version>1.0</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  
  <dependencies>
     <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>jcl-over-slf4j</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>jul-to-slf4j</artifactId>
    </dependency>
    <dependency>
      <groupId>zone.src.sheaf</groupId>
      <artifactId>logback-sheaf</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    
    <dependency>
      <groupId>org.apache.velocity</groupId>
      <artifactId>velocity</artifactId>
      <version>${velocity.version}</version>
      <optional>true</optional>
    </dependency>
    
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm</artifactId>
      <optional>true</optional>
    </dependency>
    
    <dependency>
      <groupId>org.reflections</groupId>
      <artifactId>reflections</artifactId>
      <optional>true</optional>
    </dependency>
    
    <dependency> <!-- provides the @SuppressFBWarnings annotation during builds -->
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>annotations</artifactId>
      <scope>provided</scope>
    </dependency>
    
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>