-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.xml
167 lines (150 loc) · 5.34 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<!-- the version of maven's project object model -->
<pomVersion>3</pomVersion>
<groupId>net.sf.clirr</groupId>
<!-- a unique name for this project -->
<artifactId>clirr</artifactId>
<!-- a short but descriptive name for the project -->
<name>Clirr</name>
<!-- The version of the project under development, e.g.
1.1, 1.2, 2.0-dev -->
<currentVersion>0.7-dev</currentVersion>
<!-- details about the organization that 'owns' the project -->
<organization>
<name>Lars Kühne</name>
<url>mailto:clirr-devel@lists.sourceforge.net</url>
</organization>
<!-- the year the project started -->
<inceptionYear>2003</inceptionYear>
<package>net.sf.clirr</package>
<logo>/images/clirr.png</logo>
<description>
Clirr is a tool that checks Java libraries for binary and source
compatibility with older releases. Basically you give it two sets
of jar files and Clirr dumps out a list of changes in the public
api. Clirr provides an Ant task that can be configured to break
the build if it detects incompatible api changes. In a continuous
integration process Clirr can automatically prevent accidental
introduction of compatibility problems in Java libraries.
</description>
<!-- a short description of what the project does -->
<shortDescription>
Java compatibility checker
</shortDescription>
<!-- the project home page -->
<url>http://clirr.sourceforge.net/</url>
<issueTrackingUrl>https://sourceforge.net/tracker/?group_id=89627&atid=590799</issueTrackingUrl>
<siteAddress>shell.sourceforge.net</siteAddress>
<siteDirectory>/home/groups/c/cl/clirr/htdocs/</siteDirectory>
<distributionSite>shell.sourceforge.net</distributionSite>
<distributionDirectory>/home/groups/c/cl/clirr/htdocs/builds/</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@clirr.cvs.sourceforge.net:/cvsroot/clirr:clirr</connection>
<url>http://clirr.cvs.sourceforge.net/clirr</url>
</repository>
<versions>
<version>
<id>0.2</id>
<name>0.2</name>
<tag>RELEASE_CLIRR_0_2</tag>
</version>
<version>
<id>0.3</id>
<name>0.3</name>
<tag>RELEASE_CLIRR_0_3</tag>
</version>
<version>
<id>0.4</id>
<name>0.4</name>
<tag>RELEASE_CLIRR_0_4</tag>
</version>
<version>
<id>0.5</id>
<name>0.5</name>
<tag>RELEASE_CLIRR_0_5</tag>
</version>
<version>
<id>0.6</id>
<name>0.6</name>
<tag>RELEASE_CLIRR_0_6</tag>
</version>
</versions>
<!-- any mailing lists for the project -->
<mailingLists>
<mailingList>
<name>clirr-user</name>
<subscribe>http://lists.sourceforge.net/lists/listinfo/clirr-user</subscribe>
<unsubscribe>http://lists.sourceforge.net/lists/listinfo/clirr-user</unsubscribe>
<archive>http://lists.sourceforge.net/lists/listinfo/clirr-user</archive>
</mailingList>
<mailingList>
<name>clirr-devel</name>
<subscribe>http://lists.sourceforge.net/lists/listinfo/clirr-devel</subscribe>
<unsubscribe>http://lists.sourceforge.net/lists/listinfo/clirr-devel</unsubscribe>
<archive>http://lists.sourceforge.net/lists/listinfo/clirr-devel</archive>
</mailingList>
</mailingLists>
<!-- who the developers are for the project -->
<developers>
<developer>
<name>Lars Kühne</name>
<id>lkuehne</id>
<!-- <email>lkuehne at users sourceforge net</email> -->
<organization>ppi Media</organization>
<timezone>+1</timezone>
<roles>
<role>Java Developer</role>
<role>Project Admin</role>
</roles>
</developer>
<developer>
<name>Vincent Massol</name>
<id>vmassol</id>
<organization>Apache Software Foundation</organization>
<timezone>+1</timezone>
<url>http://blogs.codehaus.org/people/vmassol</url>
<roles>
<role>Initial Inspiration and Feedback</role>
<role>Java Developer</role>
<role>Maven Guru</role>
</roles>
</developer>
<developer>
<name>Simon Kitching</name>
<id>s_kitching</id>
<organization>ECN</organization>
<timezone>+12</timezone>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Stephen Colebourne</name>
<email/>
<organization>Apache Software Foundation</organization>
<roles>
<role>Feedback</role>
<role>Bug reports</role>
<role>Usability testing</role>
</roles>
<url/>
<timezone/>
</contributor>
</contributors>
<!-- build information for the project -->
<build>
<nagEmailAddress>clirr-devel@lists.sourceforge.net</nagEmailAddress>
</build>
<reports>
<report>maven-multichanges-plugin</report>
<report>maven-license-plugin</report>
<!-- <report>maven-linkcheck-plugin</report> -->
<report>maven-tasklist-plugin</report>
</reports>
</project>