-
Notifications
You must be signed in to change notification settings - Fork 22
/
project.xml
108 lines (97 loc) · 3.67 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
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- the version of maven's project object model -->
<pomVersion>3</pomVersion>
<!-- a unique name for this project -->
<id>cmdline-jmxclient</id>
<!-- a short but descriptive name for the project -->
<name>Command-line JMX Client</name>
<!-- The version of the project under development, e.g.
1.1, 1.2, 2.0-SNAPSHOT -->
<currentVersion>0.10.5${version.build.suffix}</currentVersion>
<!-- details about the organization that 'owns' the project -->
<organization>
<name>Internet Archive</name>
<url>http://www.archive.org/</url>
<logo>http://www.archive.org/images/logo.jpg</logo>
</organization>
<!-- the year the project started -->
<inceptionYear>2004</inceptionYear>
<package>org.archive.jmx</package>
<logo>http://www.archive.org/images/logo.gif</logo>
<description>Command-line JMX Client.
</description>
<!-- a short description of what the project does -->
<shortDescription>Command-line JMX Client</shortDescription>
<!-- the project home page -->
<url>http://crawler.archive.org/</url>
<siteAddress>jakarta.apache.org</siteAddress>
<issueTrackingUrl>http://sourceforge.net/tracker/?group_id=73833
</issueTrackingUrl>
<siteDirectory>/home/groups/a/ar/archive-crawler/htdocs/</siteDirectory>
<distributionSite>http://shell.sourceforge.net</distributionSite>
<distributionDirectory>/home/users/s/st/${maven.username}
</distributionDirectory>
<!-- the version control repository and http url for online access
the connection element has the form:
scm:<system>:<system specific connection string> -->
<repository>
<connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/archive-crawler:cmdline-jmxclient</connection>
<url>http://cvs.sourceforge.net/viewcvs.py/archive-crawler/cmdline-jmxclient</url>
</repository>
<!-- any mailing lists for the project -->
<mailingLists>
<mailingList>
<name>Crawler Discussion List</name>
<subscribe>
archive-crawler-subscribe@yahoogroups.com
</subscribe>
<unsubscribe>
archive-crawler-unsubscribe@yahoogroups.com
</unsubscribe>
<archive>
http://groups.yahoo.com/group/archive-crawler/
</archive>
</mailingList>
<mailingList>
<name>Crawler CVS Commits</name>
<subscribe>
http://lists.sourceforge.net/lists/listinfo/archive-crawler-cvs
</subscribe>
<unsubscribe>
http://lists.sourceforge.net/lists/listinfo/archive-crawler-cvs
</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=archive-crawler-cvs
</archive>
</mailingList>
</mailingLists>
<!-- who the developers are for the project -->
<developers/>
<contributors />
<!--License-->
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- jar files the project is dependent on -->
<dependencies />
<!-- build information for the project -->
<build>
<nagEmailAddress>webmaster@crawler.archive.org</nagEmailAddress>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/java</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</unitTest>
<resources>
<resource>
<directory>${basedir}/src/conf/</directory>
</resource>
</resources>
</build>
</project>