<?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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>5</version>
  </parent>

  <groupId>com.github.xian</groupId>
  <artifactId>great-expectations</artifactId>
  <version>0.10</version>
  <packaging>jar</packaging>
  <name>great-expectations</name>
  <description>Jasmine-style expect() for Java.</description>
  <url>http://github.com/xian/great-expectations/</url>

  <dependencies>
    <dependency>
        <groupId>asm</groupId>
        <artifactId>asm</artifactId>
        <version>3.3.1</version>
    </dependency>

    <dependency>
        <groupId>asm</groupId>
        <artifactId>asm-commons</artifactId>
        <version>3.3.1</version>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <excludes>
            <exclude>**/Test*.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <scm>
    <url>git@github.com:xian/great-expectations.git</url>
    <connection>scm:git:git://github.com/xian/great-expectations.git</connection>
    <developerConnection>scm:git:git@github.com:xian/great-expectations.git
    </developerConnection>
  </scm>

  <ciManagement>
    <system>Hudson</system>
    <url>http://cibuilder.pivotallabs.com:8080/job/great-expectations/</url>
  </ciManagement>

  <developers>
    <developer>
      <id>xian</id>
      <name>Christian Williams</name>
      <email>antixian666@gmail.com</email>
      <roles>
        <role>Developer</role>
      </roles>
      <timezone>PST/PDT</timezone>
    </developer>
  </developers>

  <licenses>
    <license>
      <name>MIT license</name>
      <comments>
        The MIT License

        Copyright (c) 2010 Christian Williams

        Permission is hereby granted, free of charge, to any person obtaining a
        copy
        of this software and associated documentation files (the "Software"), to
        deal
        in the Software without restriction, including without limitation the
        rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or
        sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:

        The above copyright notice and this permission notice shall be included
        in
        all copies or substantial portions of the Software.

        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
        OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
        THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
        IN
        THE SOFTWARE.
      </comments>
    </license>
  </licenses>
</project>
