1
1
<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" >
2
2
<modelVersion >4.0.0</modelVersion >
3
- <groupId >jp.skypencil .java-diff-utils</groupId >
4
- <artifactId >diffutils </artifactId >
3
+ <groupId >com.github .java-diff-utils</groupId >
4
+ <artifactId >java-diff-utils </artifactId >
5
5
<packaging >jar</packaging >
6
- <version >1.5.1 -SNAPSHOT</version >
6
+ <version >2.0.0 -SNAPSHOT</version >
7
7
8
8
<name >java-diff-utils</name >
9
9
<description >The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java.</description >
15
15
<version >7</version >
16
16
</parent >
17
17
<scm >
18
- <
connection >scm:git:
[email protected] :
eller86 /java-diff-utils.git</
connection >
19
- <
developerConnection >scm:git:
[email protected] :
eller86 /java-diff-utils.git</
developerConnection >
20
- <
url >
[email protected] :
eller86 /java-diff-utils.git</
url >
18
+ <
connection >scm:git:
[email protected] :
jcronier /java-diff-utils.git</
connection >
19
+ <
developerConnection >scm:git:
[email protected] :
jcronier /java-diff-utils.git</
developerConnection >
20
+ <
url >
[email protected] :
jcronier /java-diff-utils.git</
url >
21
21
</scm >
22
22
<developers >
23
23
<developer >
31
31
<name >andreaskumlehn</name >
32
32
<url >https://github.com/andreaskumlehn</url >
33
33
</contributor >
34
+ <contributor >
35
+ <name >JY Cr</name >
36
+ <url >https://github.com/jcronier</url >
37
+ </contributor >
34
38
</contributors >
35
39
<licenses >
36
40
<license >
42
46
</licenses >
43
47
44
48
<properties >
49
+ <maven .compiler.target>1.7</maven .compiler.target>
45
50
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
51
+ <project .reporting.outputEncoding>${project.build.sourceEncoding} </project .reporting.outputEncoding>
52
+ <maven .compiler.encoding>${project.build.sourceEncoding} </maven .compiler.encoding>
53
+ <maven .compiler.source>${maven.compiler.target} </maven .compiler.source>
46
54
</properties >
47
55
48
56
<dependencies >
49
57
<dependency >
50
58
<groupId >com.google.guava</groupId >
51
59
<artifactId >guava</artifactId >
52
- <version >15 .0</version >
60
+ <version >18 .0</version >
53
61
</dependency >
54
62
<dependency >
55
63
<groupId >com.google.code.findbugs</groupId >
56
64
<artifactId >jsr305</artifactId >
57
- <version >2 .0.2 </version >
65
+ <version >3 .0.0 </version >
58
66
<optional >true</optional >
59
67
</dependency >
60
68
<dependency >
61
69
<groupId >org.hamcrest</groupId >
62
70
<artifactId >hamcrest-library</artifactId >
63
- <version >1.2.1 </version >
71
+ <version >1.3 </version >
64
72
<scope >test</scope >
65
73
</dependency >
66
74
<dependency >
67
75
<groupId >junit</groupId >
68
76
<artifactId >junit</artifactId >
69
- <version >4.11 </version >
77
+ <version >4.12 </version >
70
78
<scope >test</scope >
71
79
</dependency >
72
80
</dependencies >
73
81
74
82
<build >
75
83
<plugins >
76
- <plugin >
77
- <groupId >org.apache.maven.plugins</groupId >
78
- <artifactId >maven-compiler-plugin</artifactId >
79
- <version >2.5.1</version >
80
- <configuration >
81
- <source >1.7</source >
82
- <target >1.7</target >
83
- <encoding >${project.build.sourceEncoding} </encoding >
84
- </configuration >
85
- </plugin >
86
- <plugin >
87
- <groupId >org.apache.maven.plugins</groupId >
88
- <artifactId >maven-javadoc-plugin</artifactId >
89
- <version >2.9.1</version >
90
- </plugin >
91
-
92
84
<!-- Make this JAR OSGi ready -->
93
85
<!-- We want to keep packaging type as jar. Therefore we need to customize the MANIFEST.MF.
94
86
See http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html
95
87
-->
96
88
<plugin >
97
89
<artifactId >maven-jar-plugin</artifactId >
98
- <version >2.4 </version >
90
+ <version >2.6 </version >
99
91
<configuration >
100
92
<archive >
101
93
<manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
105
97
<plugin >
106
98
<groupId >org.apache.felix</groupId >
107
99
<artifactId >maven-bundle-plugin</artifactId >
108
- <version >2.3.7 </version >
100
+ <version >2.5.3 </version >
109
101
<executions >
110
102
<execution >
111
103
<id >bundle-manifest</id >
116
108
</execution >
117
109
</executions >
118
110
</plugin >
119
-
120
111
</plugins >
121
112
</build >
122
-
123
- </project >
124
-
113
+ </project >
0 commit comments