<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>
  <groupId>com.googlecode.java-diff-utils</groupId>
  <artifactId>diffutils</artifactId>
  <packaging>jar</packaging>
  <version>1.2</version>
  <name>java-diff-utils</name>
  <description>The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java</description>
  <url>http://code.google.com/p/java-diff-utils/</url>
  <inceptionYear>2009</inceptionYear>

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

  <scm>
    <connection>scm:svn:http://java-diff-utils.googlecode.com/svn/trunk/</connection>
    <developerConnection>scm:svn:https://java-diff-utils.googlecode.com/svn/trunk/</developerConnection>
    <url>http://code.google.com/p/java-diff-utils/source/browse/</url>
  </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>
      <comments>A business-friendly OSS license</comments>
    </license>
  </licenses>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <build>
    <sourceDirectory>src/</sourceDirectory>
    <testSourceDirectory>test/testcase</testSourceDirectory>
    <testResources>
      <testResource>
        <directory>test/mocks</directory>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.1</version>
      <type>jar</type>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

