java-diff-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.java-diff-utils</groupId> <artifactId>java-diff-utils</artifactId> <version>2.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.java-diff-utils</groupId> <artifactId>java-diff-utils</artifactId> <version>2.2.0</version> <name>Java Diff Utils</name> <description>A library for computing diffs, applying patches, generation side-by-side view in Java</description> <url>https://github.com/java-diff-utils/java-diff-utils</url> <licenses> <license> <name>The Apache Software License, Version 1.1</name> <url>http://www.apache.org/licenses/LICENSE-1.1</url> </license> </licenses> <developers> <developer> <id>koppor</id> <name>Oliver Kopp</name> <email>kopp.dev@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/java-diff-utils/java-diff-utils.git</connection> <developerConnection>scm:git:github.com:java-diff-utils/java-diff-utils.git</developerConnection> <url>https://github.com/java-diff-utils/java-diff-utils/tree/master</url> </scm> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>