-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.xml
99 lines (98 loc) · 2.75 KB
/
project.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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<pomVersion>3</pomVersion>
<artifactId>darwin</artifactId>
<name>Darwin Site and Search Engine</name>
<groupId>darwin</groupId>
<currentVersion>0.8</currentVersion>
<inceptionYear>2005</inceptionYear>
<logo>/images/logo.gif</logo>
<mailingLists>
<mailingList>
<name>${pom.name} Dev List</name>
</mailingList>
<mailingList>
<name>${pom.name} User List</name>
</mailingList>
</mailingLists>
<dependencies>
<dependency>
<groupId>ponderutilcore</groupId>
<artifactId>ponderutilcore</artifactId>
<version>1.2.3M2</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>j-servletutil</groupId>
<artifactId>j-servletutil</artifactId>
<version>1.2.3M2</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.3.4-RC8_min</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>1.2.8</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.3.4-RC8_min</version>
<type>jar</type>
</dependency>
<dependency>
<!-- Doug Lea's Oswego concurrency package. The forerunner of JSR 166
java.util.concurrent -->
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
<version>1.3.4</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>1.9.1</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>lucene</groupId>
<artifactId>highlighter</artifactId>
<version>1.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>1.3</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</unitTest>
<resources>
<resource>
<directory>src/conf/</directory>
<targetPath>conf</targetPath>
<filtering>false</filtering>
</resource>
</resources>
</build>
</project>