<?xml version="1.0"?>
<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>com.bacoder.scm-tools</groupId>
    <artifactId>parent</artifactId>
    <version>0.0.2</version>
  </parent>

  <artifactId>core</artifactId>
  <name>core</name>
  <description>Core module for all SCM tools</description>
  <packaging>jar</packaging>

  <url>http://bacoder.com</url>
  <scm>
    <url>https://github.com/tfeng/scm-tools</url>
    <connection>scm:git:https://github.com/tfeng/scm-tools.git</connection>
    <developerConnection>scm:git:git@github.com:tfeng/scm-tools.git</developerConnection>
  </scm>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <email>tfeng@berkeley.edu</email>
      <name>Thomas Feng</name>
      <url>https://github.com/tfeng</url>
      <id>tfeng</id>
    </developer>
  </developers>

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

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </dependency>
  </dependencies>

  <properties>
    <skip.deploy>false</skip.deploy>
  </properties>
</project>
