Maven Repository - POM file for Library diffutils 1.2 1.2

Summary

java-diff-utils.

The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java.

Declaration

Here is the list of declaration for diffutils. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.googlecode.java-diff-utils</groupId>
   <artifactId>diffutils</artifactId>
   <version>1.2</version>
</dependency>

If you think this Maven repository POM file listing for diffutils is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Depends on

The diffutils-1.2 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 4.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1256

Plugin

The following plugins are used in the diffutils-1.2.jar

  1. maven-compiler-plugin

Packages

The following packages are defined in the diffutils-1.2.jar

difflib
difflib.myers

POM File Source

Here is the content of the POM file.

<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>