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