Skip to content
This repository was archived by the owner on Nov 12, 2019. It is now read-only.

Commit cdfb62d

Browse files
author
dm.naumenko@gmail.com
committed
add pom.xml
git-svn-id: http://java-diff-utils.googlecode.com/svn/trunk@18 d8d7d024-a22d-11de-b755-fd640f38fa9d
1 parent 70fe5db commit cdfb62d

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

pom.xml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.googlecode.java-diff-utils</groupId>
4+
<artifactId>diffutils</artifactId>
5+
<packaging>jar</packaging>
6+
<version>1.3.0-SNAPSHOT</version>
7+
<name>java-diff-utils</name>
8+
<description>The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java</description>
9+
<url>http://code.google.com/p/java-diff-utils/</url>
10+
<inceptionYear>2009</inceptionYear>
11+
<scm>
12+
<connection>scm:svn:http://java-diff-utils.googlecode.com/svn/trunk/</connection>
13+
<developerConnection>scm:svn:https://java-diff-utils.googlecode.com/svn/trunk/</developerConnection>
14+
<url>http://code.google.com/p/java-diff-utils/source/browse/</url>
15+
</scm>
16+
<licenses>
17+
<license>
18+
<name>The Apache Software License, Version 2.0</name>
19+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
20+
<distribution>repo</distribution>
21+
<comments>A business-friendly OSS license</comments>
22+
</license>
23+
</licenses>
24+
<properties>
25+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26+
</properties>
27+
<build>
28+
<sourceDirectory>src/</sourceDirectory>
29+
<testSourceDirectory>test/testcase</testSourceDirectory>
30+
<testResources>
31+
<testResource>
32+
<directory>test/mocks</directory>
33+
</testResource>
34+
</testResources>
35+
<plugins>
36+
<plugin>
37+
<groupId>org.apache.maven.plugins</groupId>
38+
<artifactId>maven-compiler-plugin</artifactId>
39+
<configuration>
40+
<source>1.5</source>
41+
<target>1.5</target>
42+
<encoding>UTF-8</encoding>
43+
</configuration>
44+
</plugin>
45+
</plugins>
46+
</build>
47+
<dependencies>
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
<version>4.8.1</version>
52+
<type>jar</type>
53+
<scope>test</scope>
54+
</dependency>
55+
</dependencies>
56+
</project>
57+

0 commit comments

Comments
 (0)