Mercurial > hg > digilib
annotate pom.xml @ 1280:6873d5e130d2
more sourceforge links.
author | robcast |
---|---|
date | Tue, 18 Feb 2014 11:13:30 +0100 |
parents | 828b6c8b1b19 |
children | 39cdaa1ee33b |
rev | line source |
---|---|
884 | 1 <?xml version="1.0" encoding="UTF-8"?> |
1158 | 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
1215 | 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 <modelVersion>4.0.0</modelVersion> | |
884 | 5 |
1215 | 6 <groupId>digilib</groupId> |
7 <artifactId>digilib</artifactId> | |
1233 | 8 <version>2.3-SNAPSHOT</version> |
1215 | 9 <packaging>pom</packaging> |
884 | 10 |
1215 | 11 <name>digilib</name> |
12 <description>The Digital Image Library</description> | |
1279
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
13 <url>http://digilib.sourceforge.net</url> |
1215 | 14 <inceptionYear>2001</inceptionYear> |
1158 | 15 |
1215 | 16 <organization> |
17 <name>digilib Community</name> | |
1279
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
18 <url>http://digilib.sourceforge.net</url> |
1215 | 19 </organization> |
884 | 20 |
1215 | 21 <developers> |
22 <developer> | |
23 <id>robcast</id> | |
24 <name>Robert Casties</name> | |
1280 | 25 <email>robcast@users.sourceforge.net</email> |
1215 | 26 <organization>Max Planck Institute for the History of Science (MPIWG)</organization> |
27 <organizationUrl>http://www.mpiwg-berlin.mpg.de</organizationUrl> | |
28 <roles> | |
29 <role>developer</role> | |
30 <role>architect</role> | |
31 </roles> | |
32 </developer> | |
33 <developer> | |
34 <id>hertzhaft</id> | |
35 <name>Martin Raspe</name> | |
1280 | 36 <email>hertzhaft@users.sourceforge.net</email> |
1215 | 37 <organization>Bibliotheca Hertziana</organization> |
38 <organizationUrl>http://www.biblhertz.it</organizationUrl> | |
39 <roles> | |
40 <role>developer</role> | |
41 </roles> | |
42 </developer> | |
43 </developers> | |
44 <contributors> | |
45 <contributor> | |
46 <name>Gerd Grasshoff</name> | |
47 <organization>Humboldt Universität Berlin</organization> | |
48 <organizationUrl>http://www.hu-berlin.de</organizationUrl> | |
49 <roles> | |
50 <role>former developer</role> | |
51 </roles> | |
52 </contributor> | |
53 <contributor> | |
54 <name>Robert Gordesch</name> | |
55 <organization>Max Planck Institute for the History of Science (MPIWG)</organization> | |
56 <roles> | |
57 <role>former developer</role> | |
58 </roles> | |
59 </contributor> | |
60 <contributor> | |
61 <name>Christian Luginbuehl</name> | |
62 <organization>Universität Bern</organization> | |
63 <roles> | |
64 <role>former developer</role> | |
65 </roles> | |
66 </contributor> | |
67 </contributors> | |
68 <licenses> | |
69 <license> | |
70 <name>GNU General Lesser Public License (LGPL) version 3.0</name> | |
71 <url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url> | |
72 <distribution>repo</distribution> | |
73 </license> | |
74 </licenses> | |
75 <scm> | |
1279
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
76 <connection>scm:hg:http://hg.code.sf.net/p/digilib/code</connection> |
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
77 <developerConnection>scm:hg:https://hg.code.sf.net/p/digilib/code</developerConnection> |
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
78 <url>https://sourceforge.net/p/digilib/code/ci/default/tree</url> |
1215 | 79 </scm> |
80 <issueManagement> | |
81 <system>Trac</system> | |
82 <url>https://it-dev.mpiwg-berlin.mpg.de/tracs/digilib</url> | |
83 </issueManagement> | |
84 <mailingLists> | |
85 <mailingList> | |
86 <name>Developer List</name> | |
87 <subscribe>https://lists.berlios.de/mailman/listinfo/digilib-devel</subscribe> | |
88 <unsubscribe>https://lists.berlios.de/mailman/listinfo/digilib-devel</unsubscribe> | |
89 <archive>https://lists.berlios.de/pipermail/digilib-devel/</archive> | |
90 </mailingList> | |
91 </mailingLists> | |
890 | 92 |
1215 | 93 <build> |
94 <pluginManagement> | |
95 <plugins> | |
96 <plugin> | |
97 <groupId>org.apache.maven.plugins</groupId> | |
98 <artifactId>maven-compiler-plugin</artifactId> | |
99 <version>2.3.2</version> | |
100 </plugin> | |
101 </plugins> | |
102 </pluginManagement> | |
103 <plugins> | |
104 <plugin> | |
105 <groupId>org.apache.maven.plugins</groupId> | |
106 <artifactId>maven-scm-plugin</artifactId> | |
107 <version>1.5</version> | |
108 <configuration> | |
109 <goals>install</goals> | |
110 </configuration> | |
111 </plugin> | |
112 <plugin> | |
113 <groupId>org.codehaus.mojo</groupId> | |
114 <artifactId>license-maven-plugin</artifactId> | |
115 <version>1.4</version> | |
116 <configuration> | |
117 <!-- <verbose>false</verbose> --> | |
118 <licenseName>lgpl_v3</licenseName> | |
119 <!-- <useMissingFile>true</useMissingFile> --> | |
120 <!-- servlet-api is never included in packaging --> | |
121 <excludedArtifacts>servlet-api</excludedArtifacts> | |
122 </configuration> | |
123 </plugin> | |
124 <plugin> | |
125 <groupId>org.apache.maven.plugins</groupId> | |
126 <artifactId>maven-javadoc-plugin</artifactId> | |
127 <version>2.9.1</version> | |
128 <configuration> | |
129 <show>package</show> | |
130 <nohelp>true</nohelp> | |
131 </configuration> | |
132 </plugin> | |
133 </plugins> | |
134 </build> | |
135 <profiles> | |
136 <profile> | |
137 <id>servlet2</id> | |
138 </profile> | |
139 <profile> | |
140 <id>servlet3</id> | |
141 <activation> | |
142 <activeByDefault>true</activeByDefault> | |
143 </activation> | |
144 </profile> | |
145 <!-- optional modules with dependencies selected by profile --> | |
146 <profile> | |
147 <id>text</id> | |
148 <modules> | |
149 <module>text</module> | |
150 </modules> | |
151 </profile> | |
152 <profile> | |
153 <id>pdf</id> | |
154 <modules> | |
155 <module>pdf</module> | |
156 </modules> | |
157 </profile> | |
158 <profile> | |
159 <id>codec-jai</id> | |
160 <modules> | |
161 <module>common-jai</module> | |
162 </modules> | |
163 </profile> | |
164 <profile> | |
165 <id>codec-imagej</id> | |
166 <modules> | |
167 <module>common-imagej</module> | |
168 </modules> | |
169 </profile> | |
170 <profile> | |
171 <id>codec-bioformats</id> | |
172 <modules> | |
173 <module>common-bioformats</module> | |
174 </modules> | |
175 </profile> | |
176 </profiles> | |
177 <repositories> | |
178 </repositories> | |
884 | 179 |
1215 | 180 <dependencyManagement> |
181 <dependencies> | |
182 <dependency> | |
183 <groupId>log4j</groupId> | |
184 <artifactId>log4j</artifactId> | |
185 <version>1.2.14</version> | |
186 </dependency> | |
187 <!-- digilib module versions --> | |
188 <dependency> | |
189 <groupId>digilib</groupId> | |
190 <artifactId>digilib-common</artifactId> | |
1233 | 191 <version>2.3-SNAPSHOT</version> |
1215 | 192 </dependency> |
193 <dependency> | |
194 <groupId>digilib</groupId> | |
195 <artifactId>digilib-common-jai</artifactId> | |
1233 | 196 <version>2.3-SNAPSHOT</version> |
1215 | 197 </dependency> |
198 <dependency> | |
199 <groupId>digilib</groupId> | |
200 <artifactId>digilib-common-imagej</artifactId> | |
1233 | 201 <version>2.3-SNAPSHOT</version> |
1215 | 202 </dependency> |
203 <dependency> | |
204 <groupId>digilib</groupId> | |
205 <artifactId>digilib-common-bioformats</artifactId> | |
1233 | 206 <version>2.3-SNAPSHOT</version> |
1215 | 207 </dependency> |
208 <dependency> | |
209 <groupId>digilib</groupId> | |
1216
bd7dfa8b164e
move new digilib doc from https://it-dev.mpiwg-berlin.mpg.de/hg/digilib-doc into main repo.
robcast
parents:
1215
diff
changeset
|
210 <artifactId>digilib-doc</artifactId> |
1233 | 211 <version>2.3-SNAPSHOT</version> |
1216
bd7dfa8b164e
move new digilib doc from https://it-dev.mpiwg-berlin.mpg.de/hg/digilib-doc into main repo.
robcast
parents:
1215
diff
changeset
|
212 </dependency> |
bd7dfa8b164e
move new digilib doc from https://it-dev.mpiwg-berlin.mpg.de/hg/digilib-doc into main repo.
robcast
parents:
1215
diff
changeset
|
213 <dependency> |
bd7dfa8b164e
move new digilib doc from https://it-dev.mpiwg-berlin.mpg.de/hg/digilib-doc into main repo.
robcast
parents:
1215
diff
changeset
|
214 <groupId>digilib</groupId> |
1215 | 215 <artifactId>digilib-pdf</artifactId> |
1233 | 216 <version>2.3-SNAPSHOT</version> |
1215 | 217 </dependency> |
218 <dependency> | |
219 <groupId>digilib</groupId> | |
220 <artifactId>digilib-text</artifactId> | |
1233 | 221 <version>2.3-SNAPSHOT</version> |
1215 | 222 </dependency> |
223 <dependency> | |
224 <groupId>digilib</groupId> | |
225 <artifactId>digilib-servlet</artifactId> | |
1233 | 226 <version>2.3-SNAPSHOT</version> |
1215 | 227 </dependency> |
228 <dependency> | |
229 <groupId>digilib</groupId> | |
230 <artifactId>digilib-servlet2</artifactId> | |
1233 | 231 <version>2.3-SNAPSHOT</version> |
1215 | 232 </dependency> |
233 <dependency> | |
234 <groupId>digilib</groupId> | |
235 <artifactId>digilib-servlet3</artifactId> | |
1233 | 236 <version>2.3-SNAPSHOT</version> |
1215 | 237 </dependency> |
238 <dependency> | |
239 <groupId>digilib</groupId> | |
240 <artifactId>digilib-webapp</artifactId> | |
1233 | 241 <version>2.3-SNAPSHOT</version> |
1215 | 242 </dependency> |
243 </dependencies> | |
244 </dependencyManagement> | |
245 <properties> | |
246 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
247 </properties> | |
1158 | 248 |
1215 | 249 <dependencies> |
250 </dependencies> | |
251 <!-- default modules --> | |
252 <modules> | |
253 <module>common</module> | |
254 <module>servlet</module> | |
255 <module>servlet2</module> | |
256 <module>servlet3</module> | |
257 <module>webapp</module> | |
1216
bd7dfa8b164e
move new digilib doc from https://it-dev.mpiwg-berlin.mpg.de/hg/digilib-doc into main repo.
robcast
parents:
1215
diff
changeset
|
258 <module>doc</module> |
1215 | 259 </modules> |
884 | 260 </project> |