Skip to content

Commit e76c9ff

Browse files
committed
cleaned up
1 parent 42fde56 commit e76c9ff

23 files changed

+35
-371
lines changed

.idea/ant.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.idea/copyright/profiles_settings.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/libraries/Maven__junit_junit_4_8_1.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/uiDesigner.xml

Lines changed: 0 additions & 125 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Diff Utils library is an OpenSource library for performing the comparison operat
33

44
Main reason to build this library was the lack of easy-to-use libraries with all the usual stuff you need while working with diff files. Originally it was inspired by JRCS library and it's nice design of diff module.
55

6+
This is originally a fork of java-diff-utils from Google Code Archive.
7+
68
## Main Features ##
79

810
* computing the difference between two texts.
@@ -16,28 +18,29 @@ Main reason to build this library was the lack of easy-to-use libraries with all
1618
This library implements Myer's diff algorithm. But it can easily replaced by any other which is better for handing your texts. I have plan to add implementation of some in future.
1719

1820
### Changelog ###
19-
21+
* Version 1.4
22+
* switch to maven and removed other artifacts
23+
* changed groupid to *com.github.java-diff-utils* due to different forks at github
24+
* updated maven plugins
25+
* JDK 1.7 compatibility
2026
* Version 1.2
2127
* JDK 1.5 compatibility
2228
* Ant build script
2329
* Generate output in unified diff format (thanks for Bill James)
2430

2531
### To Install ###
2632

33+
This jar is not yet to get at maven central.
34+
2735
Just add the code below to your maven dependencies:
2836
```
2937
<dependency>
30-
<groupId>com.googlecode.java-diff-utils</groupId>
38+
<groupId>com.github.java-diff-utils</groupId>
3139
<artifactId>diffutils</artifactId>
3240
<version>1.2.1</version>
3341
</dependency>
3442
```
3543

36-
And for Ivy:
37-
```
38-
<dependency org="com.googlecode.java-diff-utils" name="diffutils" rev="1.2.1"/>
39-
```
40-
4144
## Coming eventually ##
4245

4346
* support for inline diffs in output

0 commit comments

Comments
 (0)