Download diffutils-1.3.0.jar file

Introduction

You can download diffutils-1.3.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

diffutils-1.3.0.jar file has the following types.

META-INF.maven.com.googlecode.java-diff-utils.diffutils.pom.properties
META-INF.maven.com.googlecode.java-diff-utils.diffutils.pom.xml
META-INF/MANIFEST.MF
difflib.ChangeDelta.class
difflib.Chunk.class
difflib.DeleteDelta.class
difflib.Delta.class
difflib.DeltaComparator.class
difflib.DiffAlgorithm.class
difflib.DiffException.class
difflib.DiffRow.class
difflib.DiffRowGenerator.class
difflib.DiffUtils.class
difflib.InsertDelta.class
difflib.Patch.class
difflib.PatchFailedException.class
difflib.StringUtills.class
difflib.myers.DiffException.class
difflib.myers.DiffNode.class
difflib.myers.DifferentiationFailedException.class
difflib.myers.Equalizer.class
difflib.myers.MyersDiff.class
difflib.myers.PathNode.class
difflib.myers.Snake.class

Pom

diffutils-1.3.0.pom file content.

<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.3.0</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>7</version>
	</parent>
	<scm>
		<connection>scm:svn:http://java-diff-utils.googlecode.com/svn/branches/1.3.0/</connection>
		<developerConnection>scm:svn:https://java-diff-utils.googlecode.com/svn/branches/1.3.0</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>
	<developers />
	
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<type>jar</type>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			
			<!-- Make this JAR OSGi ready -->
			<!-- We want to keep packaging type as jar. Therefore we need to customize the MANIFEST.MF. 
			See http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html
			-->
			<plugin>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<archive>
						<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>2.3.7</version>
				<executions>
					<execution>
						<id>bundle-manifest</id>
						<phase>process-classes</phase>
						<goals>
							<goal>manifest</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			
		</plugins>
	</build>
	
</project>

POM Entry

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

Download

If you think the following diffutils-1.3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download diffutils-1.3.0.jar file




PreviousNext

Related