Mercurial > hg > digilib
annotate webapp/pom.xml @ 1597:4e22d3adf4c8 release-2.5
Starting 'release-2.5' branch
author | robcast |
---|---|
date | Mon, 13 Feb 2017 16:38:21 +0100 |
parents | d1921b08fedb |
children | e52ac05b302d 1d21cb0d697c |
rev | line source |
---|---|
884 | 1 <?xml version="1.0"?> |
895 | 2 <project |
1162 | 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
5 <modelVersion>4.0.0</modelVersion> | |
6 <parent> | |
7 <artifactId>digilib</artifactId> | |
8 <groupId>digilib</groupId> | |
1591
8dff61ffdbc3
new digilib version 2.5 (for new Scaler options/flags handling)
robcast
parents:
1517
diff
changeset
|
9 <version>2.5-SNAPSHOT</version> |
1162 | 10 </parent> |
11 <artifactId>digilib-webapp</artifactId> | |
12 <name>digilib-webapp</name> | |
13 <description>The Digital Image Library - web application server and HTML and JS clients.</description> | |
1279
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
14 <url>http://digilib.sourceforge.net</url> |
1162 | 15 <packaging>war</packaging> |
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
16 |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
17 <properties> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
18 <skipTests>true</skipTests> |
1466 | 19 <servletapi>3</servletapi> |
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
20 </properties> |
884 | 21 |
1162 | 22 <build> |
23 <pluginManagement> | |
24 <plugins> | |
25 <plugin> | |
26 <groupId>org.apache.maven.plugins</groupId> | |
27 <artifactId>maven-war-plugin</artifactId> | |
1401 | 28 <version>2.6</version> |
1162 | 29 </plugin> |
30 <plugin> | |
31 <groupId>org.codehaus.mojo</groupId> | |
32 <artifactId>license-maven-plugin</artifactId> | |
33 <version>1.4</version> | |
34 <configuration> | |
35 <includes> | |
36 <include>**/*digilib*.js</include> | |
37 <include>**/*.jsp</include> | |
38 </includes> | |
39 </configuration> | |
40 </plugin> | |
1463 | 41 <plugin> |
42 <groupId>org.apache.maven.plugins</groupId> | |
43 <artifactId>maven-surefire-plugin</artifactId> | |
44 <version>2.19</version> | |
45 <configuration> | |
46 <skip>${skipTests}</skip> | |
47 </configuration> | |
48 </plugin> | |
49 </plugins> | |
1162 | 50 </pluginManagement> |
1463 | 51 <plugins> |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
52 <plugin> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
53 <groupId>com.samaxes.maven</groupId> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
54 <artifactId>minify-maven-plugin</artifactId> |
1595
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
55 <version>1.7.6</version> |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
56 <executions> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
57 <execution> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
58 <id>digilib-basic-minify</id> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
59 <configuration> |
1465 | 60 <!-- JS files --> |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
61 <jsSourceDir>jquery</jsSourceDir> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
62 <jsTargetDir></jsTargetDir> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
63 <jsSourceFiles> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
64 <jsSourceFile>jquery.digilib.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
65 <jsSourceFile>jquery.digilib.geometry.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
66 <jsSourceFile>jquery.digilib.arrows.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
67 <jsSourceFile>jquery.digilib.buttons.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
68 <jsSourceFile>jquery.digilib.dialogs.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
69 <jsSourceFile>jquery.digilib.sliders.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
70 <jsSourceFile>jquery.digilib.birdseye.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
71 <jsSourceFile>jquery.digilib.marks.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
72 <jsSourceFile>jquery.digilib.regions.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
73 </jsSourceFiles> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
74 <jsFinalFile>jquery.digilib-basic.js</jsFinalFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
75 <jsEngine>YUI</jsEngine> |
1595
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
76 <!-- <jsEngine>CLOSURE</jsEngine> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
77 <closureCreateSourceMap>true</closureCreateSourceMap> --> |
1465 | 78 <!-- CSS files --> |
79 <cssSourceDir>jquery</cssSourceDir> | |
80 <cssSourceFiles> | |
81 <cssSourceFile>jquery.digilib.css</cssSourceFile> | |
1466 | 82 <cssSourceFile>jquery.digilib.buttons-full-32-sprite.css</cssSourceFile> |
1465 | 83 <cssSourceFile>jquery.range.css</cssSourceFile> |
84 </cssSourceFiles> | |
85 <cssFinalFile>jquery.digilib-basic.css</cssFinalFile> | |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
86 </configuration> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
87 <goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
88 <goal>minify</goal> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
89 </goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
90 </execution> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
91 <execution> |
1515
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
92 <id>digilib-auth-minify</id> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
93 <configuration> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
94 <!-- JS files --> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
95 <jsSourceDir>jquery</jsSourceDir> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
96 <jsTargetDir></jsTargetDir> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
97 <jsSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
98 <jsSourceFile>jquery.digilib.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
99 <jsSourceFile>jquery.digilib.geometry.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
100 <jsSourceFile>jquery.digilib.arrows.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
101 <jsSourceFile>jquery.digilib.buttons.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
102 <jsSourceFile>jquery.digilib.dialogs.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
103 <jsSourceFile>jquery.digilib.sliders.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
104 <jsSourceFile>jquery.digilib.birdseye.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
105 <jsSourceFile>jquery.digilib.marks.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
106 <jsSourceFile>jquery.digilib.regions.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
107 <jsSourceFile>jquery.digilib.oauth.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
108 </jsSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
109 <jsFinalFile>jquery.digilib-auth.js</jsFinalFile> |
1595
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
110 <jsEngine>YUI</jsEngine> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
111 <!-- <jsEngine>CLOSURE</jsEngine> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
112 <closureCreateSourceMap>true</closureCreateSourceMap> --> |
1515
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
113 <!-- CSS files --> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
114 <cssSourceDir>jquery</cssSourceDir> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
115 <cssSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
116 <cssSourceFile>jquery.digilib.css</cssSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
117 <cssSourceFile>jquery.digilib.buttons-full-32-sprite.css</cssSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
118 <cssSourceFile>jquery.range.css</cssSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
119 </cssSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
120 <cssFinalFile>jquery.digilib-auth.css</cssFinalFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
121 </configuration> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
122 <goals> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
123 <goal>minify</goal> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
124 </goals> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
125 </execution> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
126 <execution> |
1465 | 127 <id>digilib-ann-minify</id> |
128 <configuration> | |
129 <jsSourceDir>jquery</jsSourceDir> | |
130 <jsTargetDir></jsTargetDir> | |
131 <jsSourceFiles> | |
132 <jsSourceFile>jquery.digilib.js</jsSourceFile> | |
133 <jsSourceFile>jquery.digilib.geometry.js</jsSourceFile> | |
134 <jsSourceFile>jquery.digilib.arrows.js</jsSourceFile> | |
135 <jsSourceFile>jquery.digilib.buttons.js</jsSourceFile> | |
136 <jsSourceFile>jquery.digilib.dialogs.js</jsSourceFile> | |
137 <jsSourceFile>jquery.digilib.sliders.js</jsSourceFile> | |
138 <jsSourceFile>jquery.digilib.birdseye.js</jsSourceFile> | |
139 <jsSourceFile>jquery.digilib.marks.js</jsSourceFile> | |
140 <jsSourceFile>jquery.digilib.regions.js</jsSourceFile> | |
141 <jsSourceFile>jquery.digilib.vector.js</jsSourceFile> | |
142 <jsSourceFile>jquery.digilib.annotator.js</jsSourceFile> | |
143 <jsSourceFile>showdown.js</jsSourceFile> | |
144 </jsSourceFiles> | |
145 <jsFinalFile>jquery.digilib-ann.js</jsFinalFile> | |
1595
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
146 <jsEngine>YUI</jsEngine> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
147 <!-- <jsEngine>CLOSURE</jsEngine> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
148 <closureCreateSourceMap>true</closureCreateSourceMap> --> |
1465 | 149 <!-- CSS files --> |
150 <cssSourceDir>jquery</cssSourceDir> | |
151 <cssSourceFiles> | |
152 <cssSourceFile>jquery.digilib.css</cssSourceFile> | |
1466 | 153 <cssSourceFile>jquery.digilib.buttons-full-32-sprite.css</cssSourceFile> |
1465 | 154 <cssSourceFile>jquery.range.css</cssSourceFile> |
155 </cssSourceFiles> | |
156 <cssFinalFile>jquery.digilib-ann.css</cssFinalFile> | |
157 </configuration> | |
158 <goals> | |
159 <goal>minify</goal> | |
160 </goals> | |
161 </execution> | |
162 <execution> | |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
163 <id>cookie-range-minify</id> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
164 <configuration> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
165 <jsSourceDir>jquery</jsSourceDir> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
166 <jsTargetDir></jsTargetDir> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
167 <jsSourceFiles> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
168 <jsSourceFile>jquery.cookie.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
169 <jsSourceFile>jquery.range.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
170 </jsSourceFiles> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
171 <jsFinalFile>jquery.cookie-range.js</jsFinalFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
172 <jsEngine>YUI</jsEngine> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
173 </configuration> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
174 <goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
175 <goal>minify</goal> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
176 </goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
177 </execution> |
1595
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
178 <!-- <execution> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
179 <id>annotator-dl-minify</id> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
180 <configuration> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
181 <jsSourceDir>jquery</jsSourceDir> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
182 <jsTargetDir></jsTargetDir> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
183 <jsSourceFiles> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
184 <jsSourceFile>annotator-dl.js</jsSourceFile> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
185 </jsSourceFiles> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
186 <jsFinalFile>annotator-dl.js</jsFinalFile> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
187 <jsEngine>YUI</jsEngine> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
188 </configuration> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
189 <goals> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
190 <goal>minify</goal> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
191 </goals> |
d1921b08fedb
fixed css classes for annotations. updated minified annotator-dl.js.
robcast
parents:
1591
diff
changeset
|
192 </execution> --> |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
193 </executions> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
194 </plugin> |
1463 | 195 </plugins> |
1162 | 196 </build> |
197 <profiles> | |
198 <profile> | |
199 <id>servlet2</id> | |
200 <activation> | |
201 <property> | |
202 <name>servletapi</name> | |
203 <value>2</value> | |
204 </property> | |
205 </activation> | |
206 <dependencies> | |
207 <dependency> | |
208 <groupId>digilib</groupId> | |
209 <artifactId>digilib-servlet2</artifactId> | |
210 <type>jar</type> | |
211 <scope>compile</scope> | |
212 </dependency> | |
213 </dependencies> | |
214 <build> | |
215 <plugins> | |
216 <plugin> | |
217 <groupId>org.apache.maven.plugins</groupId> | |
218 <artifactId>maven-war-plugin</artifactId> | |
219 <configuration> | |
1422 | 220 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.4.xml</webXml> |
1162 | 221 <classifier>srv2</classifier> |
222 </configuration> | |
223 </plugin> | |
224 </plugins> | |
225 </build> | |
226 </profile> | |
227 <profile> | |
228 <id>servlet3</id> | |
229 <activation> | |
1195 | 230 <activeByDefault>true</activeByDefault> |
1162 | 231 <property> |
232 <name>servletapi</name> | |
233 <value>3</value> | |
234 </property> | |
235 </activation> | |
236 <dependencies> | |
237 <dependency> | |
238 <groupId>digilib</groupId> | |
239 <artifactId>digilib-servlet3</artifactId> | |
240 <type>jar</type> | |
241 <scope>compile</scope> | |
242 </dependency> | |
243 </dependencies> | |
244 <build> | |
245 <plugins> | |
246 <plugin> | |
247 <groupId>org.apache.maven.plugins</groupId> | |
248 <artifactId>maven-war-plugin</artifactId> | |
249 <configuration> | |
250 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml> | |
251 <classifier>srv3</classifier> | |
252 </configuration> | |
253 </plugin> | |
254 </plugins> | |
255 </build> | |
256 </profile> | |
257 <profile> | |
258 <id>pdf</id> | |
259 <dependencies> | |
260 <dependency> | |
261 <groupId>digilib</groupId> | |
262 <artifactId>digilib-pdf</artifactId> | |
263 <type>jar</type> | |
264 <scope>compile</scope> | |
265 </dependency> | |
266 </dependencies> | |
267 </profile> | |
268 <profile> | |
269 <id>text</id> | |
270 <dependencies> | |
271 <dependency> | |
272 <groupId>digilib</groupId> | |
273 <artifactId>digilib-text</artifactId> | |
274 <type>jar</type> | |
275 <scope>compile</scope> | |
276 </dependency> | |
277 </dependencies> | |
278 </profile> | |
279 <profile> | |
280 <id>codec-jai</id> | |
281 <dependencies> | |
282 <dependency> | |
283 <groupId>digilib</groupId> | |
284 <artifactId>digilib-common-jai</artifactId> | |
285 <type>jar</type> | |
286 <scope>compile</scope> | |
287 </dependency> | |
288 </dependencies> | |
289 </profile> | |
290 <profile> | |
291 <id>codec-imagej</id> | |
292 <dependencies> | |
293 <dependency> | |
294 <groupId>digilib</groupId> | |
295 <artifactId>digilib-common-imagej</artifactId> | |
296 <type>jar</type> | |
297 <scope>compile</scope> | |
298 </dependency> | |
299 </dependencies> | |
300 </profile> | |
301 <profile> | |
302 <id>codec-bioformats</id> | |
303 <dependencies> | |
304 <dependency> | |
305 <groupId>digilib</groupId> | |
306 <artifactId>digilib-common-bioformats</artifactId> | |
307 <type>jar</type> | |
308 <scope>compile</scope> | |
309 </dependency> | |
310 </dependencies> | |
311 </profile> | |
1447 | 312 <profile> |
313 <id>cors-filter</id> | |
1454
0f276f0cc556
remove global CORS servlet filter. add cors "*" in IIIF info request, controlled by config option.
robcast
parents:
1450
diff
changeset
|
314 <!-- external servlet filter to add CORS headers. enable in web.xml --> |
1447 | 315 <dependencies> |
316 <dependency> | |
317 <groupId>org.eclipse.jetty</groupId> | |
318 <artifactId>jetty-servlets</artifactId> | |
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
319 <version>9.2.13.v20150730</version> |
1447 | 320 </dependency> |
321 </dependencies> | |
322 </profile> | |
1466 | 323 <profile> |
324 <id>create-sprites</id> | |
325 <!-- create the button image sprite and CSS file --> | |
326 <build> | |
327 <plugins> | |
328 <plugin> | |
329 <groupId>net.jangaroo</groupId> | |
330 <artifactId>smartsprites-maven-plugin</artifactId> | |
331 <version>1.8</version> | |
332 <configuration> | |
333 <rootDirPath>src/main/webapp/jquery</rootDirPath> | |
334 <outputDirPath>${basedir}/src/main/webapp/jquery/</outputDirPath> | |
335 <logLevel>INFO</logLevel> | |
336 <spritePngDepth>AUTO</spritePngDepth> | |
337 <spritePngIeSix>false</spritePngIeSix> | |
338 <cssFileEncoding>UTF-8</cssFileEncoding> | |
339 <cssFileSuffix>-sprite</cssFileSuffix> | |
340 </configuration> | |
341 <executions> | |
342 <execution> | |
343 <id>createSprites</id> | |
344 <phase>generate-resources</phase> | |
345 <goals> | |
346 <goal>createSprites</goal> | |
347 </goals> | |
348 </execution> | |
349 </executions> | |
350 </plugin> | |
351 </plugins> | |
352 </build> | |
353 </profile> | |
1162 | 354 </profiles> |
1447 | 355 <dependencies> |
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
356 <dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
357 <groupId>org.eclipse.jetty</groupId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
358 <artifactId>jetty-servlet</artifactId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
359 <version>9.2.13.v20150730</version> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
360 <scope>test</scope> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
361 </dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
362 <dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
363 <groupId>org.eclipse.jetty</groupId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
364 <artifactId>jetty-http</artifactId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
365 <version>9.2.13.v20150730</version> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
366 <scope>test</scope> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
367 </dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
368 <dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
369 <groupId>junit</groupId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
370 <artifactId>junit</artifactId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
371 <version>4.12</version> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
372 <scope>test</scope> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
373 </dependency> |
1517
51486c82ed89
new DigilibBean instead of deprecated DocumentBean. Updated dirInfo-*.jsp etc. added auth_required information.
robcast
parents:
1515
diff
changeset
|
374 <dependency> |
51486c82ed89
new DigilibBean instead of deprecated DocumentBean. Updated dirInfo-*.jsp etc. added auth_required information.
robcast
parents:
1515
diff
changeset
|
375 <groupId>javax.servlet</groupId> |
51486c82ed89
new DigilibBean instead of deprecated DocumentBean. Updated dirInfo-*.jsp etc. added auth_required information.
robcast
parents:
1515
diff
changeset
|
376 <artifactId>jstl</artifactId> |
51486c82ed89
new DigilibBean instead of deprecated DocumentBean. Updated dirInfo-*.jsp etc. added auth_required information.
robcast
parents:
1515
diff
changeset
|
377 <version>1.2</version> |
51486c82ed89
new DigilibBean instead of deprecated DocumentBean. Updated dirInfo-*.jsp etc. added auth_required information.
robcast
parents:
1515
diff
changeset
|
378 </dependency> |
1447 | 379 </dependencies> |
884 | 380 </project> |