|
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"> |
| 1 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion>
|
3 | 4 | <groupId>com.github.java-diff-utils</groupId>
|
4 | 5 | <artifactId>diffutils</artifactId>
|
5 | 6 | <packaging>jar</packaging>
|
6 | 7 | <version>2.2-SNAPSHOT</version>
|
7 | 8 |
|
8 | 9 | <name>java-diff-utils</name>
|
9 |
| - <description>The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java.</description> |
| 10 | + <description>The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java. |
| 11 | + </description> |
10 | 12 | <url>https://github.com/wumpz/java-diff-utils</url>
|
11 | 13 | <inceptionYear>2009</inceptionYear>
|
12 |
| - <!-- |
13 |
| - to make a local release |
| 14 | + <!-- |
| 15 | + to make a local release |
14 | 16 | <parent>
|
15 | 17 | <groupId>org.sonatype.oss</groupId>
|
16 | 18 | <artifactId>oss-parent</artifactId>
|
17 | 19 | <version>9</version>
|
18 | 20 | </parent>
|
19 |
| - --> |
| 21 | + --> |
20 | 22 | <scm>
|
21 | 23 | <connection>scm:git:https://github.com/wumpz/java-diff-utils.git</connection>
|
22 | 24 | < developerConnection>scm:git:ssh:// [email protected]:wumpz/java-diff-utils.git</ developerConnection>
|
23 | 25 | <url>https://github.com/wumpz/java-diff-utils.git</url>
|
24 | 26 | <tag>diffutils-2.2</tag>
|
25 |
| - </scm> |
26 |
| - |
| 27 | + </scm> |
| 28 | + |
27 | 29 | <issueManagement>
|
28 | 30 | <system>GitHub Issues</system>
|
29 | 31 | <url>https://github.com/wumpz/java-diff-utils/issues</url>
|
30 | 32 | </issueManagement>
|
31 |
| - |
| 33 | + |
32 | 34 | <organization>
|
33 | 35 | <name>java-diff-utils</name>
|
34 | 36 | </organization>
|
35 |
| - |
| 37 | + |
36 | 38 | <developers>
|
37 | 39 | <developer>
|
38 | 40 | <name>Christopher Sontag</name>
|
|
51 | 53 |
|
52 | 54 | </developer>
|
53 | 55 | </developers>
|
54 |
| - |
| 56 | + |
55 | 57 | <licenses>
|
56 | 58 | <license>
|
57 | 59 | <name>The Apache Software License, Version 2.0</name>
|
|
108 | 110 |
|
109 | 111 | <build>
|
110 | 112 | <plugins>
|
111 |
| - |
| 113 | + |
112 | 114 | <plugin>
|
113 | 115 | <groupId>org.apache.maven.plugins</groupId>
|
114 | 116 | <artifactId>maven-compiler-plugin</artifactId>
|
|
119 | 121 | <encoding>UTF-8</encoding>
|
120 | 122 | </configuration>
|
121 | 123 | </plugin>
|
122 |
| - |
| 124 | + |
123 | 125 | <!-- Make this JAR OSGi ready -->
|
124 | 126 | <!-- We want to keep packaging type as jar. Therefore we need to customize the MANIFEST.MF.
|
125 | 127 | See http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html
|
|
181 | 183 | <localCheckout>true</localCheckout>
|
182 | 184 | <pushChanges>false</pushChanges>
|
183 | 185 | <mavenExecutorId>forked-path</mavenExecutorId>
|
184 |
| - <goals>install</goals> |
185 |
| - </configuration> |
186 |
| - </plugin> |
187 |
| - <plugin> |
188 |
| - <groupId>org.apache.maven.plugins</groupId> |
189 |
| - <artifactId>maven-checkstyle-plugin</artifactId> |
190 |
| - <version>2.17</version> |
191 |
| - <executions> |
192 |
| - <execution> |
193 |
| - <id>verify-style</id> |
194 |
| - <phase>process-classes</phase> |
195 |
| - <goals> |
196 |
| - <goal>check</goal> |
197 |
| - </goals> |
198 |
| - </execution> |
199 |
| - </executions> |
200 |
| - <configuration> |
201 |
| - <logViolationsToConsole>true</logViolationsToConsole> |
202 |
| - <includeTestSourceDirectory>true</includeTestSourceDirectory> |
203 |
| - <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
204 |
| - <checkstyleRules> |
205 |
| - <module name="Checker"> |
206 |
| - <module name="SuppressWarningsFilter" /> |
207 |
| - <module name="FileTabCharacter" /> |
208 |
| - <!-- git checkout may change linefeeds on the fly |
209 |
| - <module name="RegexpMultiline"> |
210 |
| - <property name="format" value="(?s:(\r\n|\r).*)" /> |
211 |
| - <property name="message" value="CRLF and CR line endings are prohibited, but this file uses them." /> |
212 |
| - </module> |
213 |
| - --> |
214 |
| - <module name="TreeWalker"> |
215 |
| - <module name="AvoidNestedBlocks" /> |
216 |
| - <module name="ConstantName" /> |
217 |
| - <module name="EmptyCatchBlock" /> |
218 |
| - <module name="EmptyStatement" /> |
219 |
| - <module name="MissingOverride" /> |
220 |
| - <module name="MultipleVariableDeclarations" /> |
221 |
| - <module name="ParameterAssignment" /> |
222 |
| - <module name="StringLiteralEquality" /> |
223 |
| - <module name="RedundantImport" /> |
224 |
| - <module name="UnusedImports" /> |
| 186 | + <goals>install</goals> |
| 187 | + </configuration> |
| 188 | + </plugin> |
| 189 | + <plugin> |
| 190 | + <groupId>org.apache.maven.plugins</groupId> |
| 191 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 192 | + <version>2.17</version> |
| 193 | + <executions> |
| 194 | + <execution> |
| 195 | + <id>verify-style</id> |
| 196 | + <phase>process-classes</phase> |
| 197 | + <goals> |
| 198 | + <goal>check</goal> |
| 199 | + </goals> |
| 200 | + </execution> |
| 201 | + </executions> |
| 202 | + <configuration> |
| 203 | + <logViolationsToConsole>true</logViolationsToConsole> |
| 204 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 205 | + <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 206 | + <checkstyleRules> |
| 207 | + <module name="Checker"> |
| 208 | + <module name="SuppressWarningsFilter"/> |
| 209 | + <module name="FileTabCharacter"/> |
| 210 | + <!-- git checkout may change linefeeds on the fly |
| 211 | + <module name="RegexpMultiline"> |
| 212 | + <property name="format" value="(?s:(\r\n|\r).*)" /> |
| 213 | + <property name="message" value="CRLF and CR line endings are prohibited, but this file uses them." /> |
| 214 | + </module> |
| 215 | + --> |
| 216 | + <module name="TreeWalker"> |
| 217 | + <module name="AvoidNestedBlocks"/> |
| 218 | + <module name="ConstantName"/> |
| 219 | + <module name="EmptyCatchBlock"/> |
| 220 | + <module name="EmptyStatement"/> |
| 221 | + <module name="MissingOverride"/> |
| 222 | + <module name="MultipleVariableDeclarations"/> |
| 223 | + <module name="ParameterAssignment"/> |
| 224 | + <module name="StringLiteralEquality"/> |
| 225 | + <module name="RedundantImport"/> |
| 226 | + <module name="UnusedImports"/> |
225 | 227 |
|
226 |
| - <module name="WhitespaceAfter" /> |
| 228 | + <module name="WhitespaceAfter"/> |
227 | 229 |
|
228 |
| - <module name="NeedBraces" /> |
229 |
| - <module name="UnnecessaryParentheses" /> |
230 |
| - <module name="LeftCurly" /> |
231 |
| - <module name="RightCurly" /> |
| 230 | + <module name="NeedBraces"/> |
| 231 | + <module name="UnnecessaryParentheses"/> |
| 232 | + <module name="LeftCurly"/> |
| 233 | + <module name="RightCurly"/> |
232 | 234 |
|
233 |
| - <module name="SuppressWarningsHolder" /> |
234 |
| - </module> |
235 |
| - </module> |
236 |
| - </checkstyleRules> |
237 |
| - </configuration> |
238 |
| - <dependencies> |
239 |
| - <dependency> |
240 |
| - <groupId>com.puppycrawl.tools</groupId> |
241 |
| - <artifactId>checkstyle</artifactId> |
242 |
| - <version>6.19</version> |
243 |
| - </dependency> |
244 |
| - </dependencies> |
245 |
| - </plugin> |
246 |
| - </plugins> |
247 |
| - </build> |
248 |
| - <profiles> |
249 |
| - <profile> |
250 |
| - <id>doclint-java8-disable</id> |
251 |
| - <activation> |
252 |
| - <jdk>[1.8,)</jdk> |
253 |
| - </activation> |
254 |
| - <properties> |
255 |
| - <javadoc.opts>-Xdoclint:none</javadoc.opts> |
256 |
| - </properties> |
257 |
| - </profile> |
258 |
| - <profile> |
259 |
| - <id>long-running-tests</id> |
260 |
| - <build> |
261 |
| - <plugins> |
262 |
| - <plugin> |
263 |
| - <groupId>org.apache.maven.plugins</groupId> |
264 |
| - <artifactId>maven-surefire-plugin</artifactId> |
265 |
| - <configuration> |
266 |
| - <excludes> |
267 |
| - <exclude>xxx</exclude> |
268 |
| - </excludes> |
269 |
| - </configuration> |
270 |
| - </plugin> |
271 |
| - </plugins> |
272 |
| - </build> |
273 |
| - </profile> |
274 |
| - </profiles> |
| 235 | + <module name="SuppressWarningsHolder"/> |
| 236 | + </module> |
| 237 | + </module> |
| 238 | + </checkstyleRules> |
| 239 | + </configuration> |
| 240 | + <dependencies> |
| 241 | + <dependency> |
| 242 | + <groupId>com.puppycrawl.tools</groupId> |
| 243 | + <artifactId>checkstyle</artifactId> |
| 244 | + <version>6.19</version> |
| 245 | + </dependency> |
| 246 | + </dependencies> |
| 247 | + </plugin> |
| 248 | + </plugins> |
| 249 | + </build> |
| 250 | + <profiles> |
| 251 | + <profile> |
| 252 | + <id>doclint-java8-disable</id> |
| 253 | + <activation> |
| 254 | + <jdk>[1.8,)</jdk> |
| 255 | + </activation> |
| 256 | + <properties> |
| 257 | + <javadoc.opts>-Xdoclint:none</javadoc.opts> |
| 258 | + </properties> |
| 259 | + </profile> |
| 260 | + <profile> |
| 261 | + <id>long-running-tests</id> |
| 262 | + <build> |
| 263 | + <plugins> |
| 264 | + <plugin> |
| 265 | + <groupId>org.apache.maven.plugins</groupId> |
| 266 | + <artifactId>maven-surefire-plugin</artifactId> |
| 267 | + <configuration> |
| 268 | + <excludes> |
| 269 | + <exclude>xxx</exclude> |
| 270 | + </excludes> |
| 271 | + </configuration> |
| 272 | + </plugin> |
| 273 | + </plugins> |
| 274 | + </build> |
| 275 | + </profile> |
| 276 | + </profiles> |
275 | 277 | </project>
|
276 | 278 |
|
0 commit comments