-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
141 lines (135 loc) · 4.24 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.nothome</groupId>
<artifactId>javaxdelta</artifactId>
<version>2.0.1</version>
<name>javaxdelta</name>
<!-- Project meta-data -->
<description>javaxdelta - Patch generator and patch tool using the GDIFF algorithm</description>
<licenses>
<license>
<name>MIT license</name>
<url>http://en.wikipedia.org/wiki/MIT_License</url>
</license>
</licenses>
<inceptionYear>2003</inceptionYear>
<developers>
<developer>
<name>Elias Ross</name>
<email>genman@noderunner.net</email>
</developer>
<developer>
<name>Torgeir</name>
<email>torgeir@pobox.com</email>
</developer>
</developers>
<url>http://sourceforge.net/projects/xdelta</url>
<scm>
<url>http://javaxdelta.svn.sourceforge.net/viewvc/javaxdelta/tags/javaxdelta-2.0.1</url>
<connection>scm:svn:https://javaxdelta.svn.sourceforge.net/svnroot/javaxdelta/tags/javaxdelta-2.0.1</connection>
<developerConnection>scm:svn:https://javaxdelta.svn.sourceforge.net/svnroot/javaxdelta/tags/javaxdelta-2.0.1</developerConnection>
</scm>
<mailingLists>
<mailingList>
<post>javaxdelta-devel@lists.sourceforge.net</post>
</mailingList>
</mailingLists>
<issueManagement>
<system>Sourceforge</system>
<url>http://sourceforge.net/tracker/?atid=474943&group_id=54817</url>
</issueManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-2</version>
<configuration>
<descriptorRefs>
<descriptorRef>bin</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.0-rc1</version>
<configuration>
<descriptorRefs>
<descriptorRef>bin</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration />
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
<!-- DEPENDENCIES -->
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>trove</groupId>
<artifactId>trove</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>javaxdelta.sourceforge.net</id>
<url>http://javaxdelta.sourceforge.net/maven2/repository</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>javaxdelta.sourceforge.net</id>
<url>sftp://web.sourceforge.net/home/groups/j/ja/javaxdelta/htdocs/maven2/repository</url>
</repository>
</distributionManagement>
</project>