Mercurial > hg > digilib
annotate webapp/pom.xml @ 1515:70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
author | robcast |
---|---|
date | Wed, 04 May 2016 20:06:44 +0200 |
parents | 2197975ec945 |
children | 51486c82ed89 |
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> | |
1492
2197975ec945
first version of digilib 2.4 with newly refactored authentication and authorization.
robcast
parents:
1466
diff
changeset
|
9 <version>2.4-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> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
55 <version>1.7.4</version> |
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> |
1465 | 76 <closureCreateSourceMap>true</closureCreateSourceMap> |
77 <!-- CSS files --> | |
78 <cssSourceDir>jquery</cssSourceDir> | |
79 <cssSourceFiles> | |
80 <cssSourceFile>jquery.digilib.css</cssSourceFile> | |
1466 | 81 <cssSourceFile>jquery.digilib.buttons-full-32-sprite.css</cssSourceFile> |
1465 | 82 <cssSourceFile>jquery.range.css</cssSourceFile> |
83 </cssSourceFiles> | |
84 <cssFinalFile>jquery.digilib-basic.css</cssFinalFile> | |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
85 </configuration> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
86 <goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
87 <goal>minify</goal> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
88 </goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
89 </execution> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
90 <execution> |
1515
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
91 <id>digilib-auth-minify</id> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
92 <configuration> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
93 <!-- JS files --> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
94 <jsSourceDir>jquery</jsSourceDir> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
95 <jsTargetDir></jsTargetDir> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
96 <jsSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
97 <jsSourceFile>jquery.digilib.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
98 <jsSourceFile>jquery.digilib.geometry.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
99 <jsSourceFile>jquery.digilib.arrows.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
100 <jsSourceFile>jquery.digilib.buttons.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
101 <jsSourceFile>jquery.digilib.dialogs.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
102 <jsSourceFile>jquery.digilib.sliders.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
103 <jsSourceFile>jquery.digilib.birdseye.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
104 <jsSourceFile>jquery.digilib.marks.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
105 <jsSourceFile>jquery.digilib.regions.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
106 <jsSourceFile>jquery.digilib.oauth.js</jsSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
107 </jsSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
108 <jsFinalFile>jquery.digilib-auth.js</jsFinalFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
109 <jsEngine>YUI</jsEngine> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
110 <closureCreateSourceMap>true</closureCreateSourceMap> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
111 <!-- CSS files --> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
112 <cssSourceDir>jquery</cssSourceDir> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
113 <cssSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
114 <cssSourceFile>jquery.digilib.css</cssSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
115 <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
|
116 <cssSourceFile>jquery.range.css</cssSourceFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
117 </cssSourceFiles> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
118 <cssFinalFile>jquery.digilib-auth.css</cssFinalFile> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
119 </configuration> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
120 <goals> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
121 <goal>minify</goal> |
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 </execution> |
70a487a10319
add jquery.digilib-auth collected js and css with oauth plugin.
robcast
parents:
1492
diff
changeset
|
124 <execution> |
1465 | 125 <id>digilib-ann-minify</id> |
126 <configuration> | |
127 <jsSourceDir>jquery</jsSourceDir> | |
128 <jsTargetDir></jsTargetDir> | |
129 <jsSourceFiles> | |
130 <jsSourceFile>jquery.digilib.js</jsSourceFile> | |
131 <jsSourceFile>jquery.digilib.geometry.js</jsSourceFile> | |
132 <jsSourceFile>jquery.digilib.arrows.js</jsSourceFile> | |
133 <jsSourceFile>jquery.digilib.buttons.js</jsSourceFile> | |
134 <jsSourceFile>jquery.digilib.dialogs.js</jsSourceFile> | |
135 <jsSourceFile>jquery.digilib.sliders.js</jsSourceFile> | |
136 <jsSourceFile>jquery.digilib.birdseye.js</jsSourceFile> | |
137 <jsSourceFile>jquery.digilib.marks.js</jsSourceFile> | |
138 <jsSourceFile>jquery.digilib.regions.js</jsSourceFile> | |
139 <jsSourceFile>jquery.digilib.vector.js</jsSourceFile> | |
140 <jsSourceFile>jquery.digilib.annotator.js</jsSourceFile> | |
141 <jsSourceFile>showdown.js</jsSourceFile> | |
142 </jsSourceFiles> | |
143 <jsFinalFile>jquery.digilib-ann.js</jsFinalFile> | |
144 <jsEngine>YUI</jsEngine> | |
145 <closureCreateSourceMap>true</closureCreateSourceMap> | |
146 <!-- CSS files --> | |
147 <cssSourceDir>jquery</cssSourceDir> | |
148 <cssSourceFiles> | |
149 <cssSourceFile>jquery.digilib.css</cssSourceFile> | |
1466 | 150 <cssSourceFile>jquery.digilib.buttons-full-32-sprite.css</cssSourceFile> |
1465 | 151 <cssSourceFile>jquery.range.css</cssSourceFile> |
152 </cssSourceFiles> | |
153 <cssFinalFile>jquery.digilib-ann.css</cssFinalFile> | |
154 </configuration> | |
155 <goals> | |
156 <goal>minify</goal> | |
157 </goals> | |
158 </execution> | |
159 <execution> | |
1464
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
160 <id>cookie-range-minify</id> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
161 <configuration> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
162 <jsSourceDir>jquery</jsSourceDir> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
163 <jsTargetDir></jsTargetDir> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
164 <jsSourceFiles> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
165 <jsSourceFile>jquery.cookie.js</jsSourceFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
166 <jsSourceFile>jquery.range.js</jsSourceFile> |
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 <jsFinalFile>jquery.cookie-range.js</jsFinalFile> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
169 <jsEngine>YUI</jsEngine> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
170 </configuration> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
171 <goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
172 <goal>minify</goal> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
173 </goals> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
174 </execution> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
175 </executions> |
8821a80fd9bc
add Javascript collection and minification step to maven build.
robcast
parents:
1463
diff
changeset
|
176 </plugin> |
1463 | 177 </plugins> |
1162 | 178 </build> |
179 <profiles> | |
180 <profile> | |
181 <id>servlet2</id> | |
182 <activation> | |
183 <property> | |
184 <name>servletapi</name> | |
185 <value>2</value> | |
186 </property> | |
187 </activation> | |
188 <dependencies> | |
189 <dependency> | |
190 <groupId>digilib</groupId> | |
191 <artifactId>digilib-servlet2</artifactId> | |
192 <type>jar</type> | |
193 <scope>compile</scope> | |
194 </dependency> | |
195 </dependencies> | |
196 <build> | |
197 <plugins> | |
198 <plugin> | |
199 <groupId>org.apache.maven.plugins</groupId> | |
200 <artifactId>maven-war-plugin</artifactId> | |
201 <configuration> | |
1422 | 202 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.4.xml</webXml> |
1162 | 203 <classifier>srv2</classifier> |
204 </configuration> | |
205 </plugin> | |
206 </plugins> | |
207 </build> | |
208 </profile> | |
209 <profile> | |
210 <id>servlet3</id> | |
211 <activation> | |
1195 | 212 <activeByDefault>true</activeByDefault> |
1162 | 213 <property> |
214 <name>servletapi</name> | |
215 <value>3</value> | |
216 </property> | |
217 </activation> | |
218 <dependencies> | |
219 <dependency> | |
220 <groupId>digilib</groupId> | |
221 <artifactId>digilib-servlet3</artifactId> | |
222 <type>jar</type> | |
223 <scope>compile</scope> | |
224 </dependency> | |
225 </dependencies> | |
226 <build> | |
227 <plugins> | |
228 <plugin> | |
229 <groupId>org.apache.maven.plugins</groupId> | |
230 <artifactId>maven-war-plugin</artifactId> | |
231 <configuration> | |
232 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml> | |
233 <classifier>srv3</classifier> | |
234 </configuration> | |
235 </plugin> | |
236 </plugins> | |
237 </build> | |
238 </profile> | |
239 <profile> | |
240 <id>pdf</id> | |
241 <dependencies> | |
242 <dependency> | |
243 <groupId>digilib</groupId> | |
244 <artifactId>digilib-pdf</artifactId> | |
245 <type>jar</type> | |
246 <scope>compile</scope> | |
247 </dependency> | |
248 </dependencies> | |
249 </profile> | |
250 <profile> | |
251 <id>text</id> | |
252 <dependencies> | |
253 <dependency> | |
254 <groupId>digilib</groupId> | |
255 <artifactId>digilib-text</artifactId> | |
256 <type>jar</type> | |
257 <scope>compile</scope> | |
258 </dependency> | |
259 </dependencies> | |
260 </profile> | |
261 <profile> | |
262 <id>codec-jai</id> | |
263 <dependencies> | |
264 <dependency> | |
265 <groupId>digilib</groupId> | |
266 <artifactId>digilib-common-jai</artifactId> | |
267 <type>jar</type> | |
268 <scope>compile</scope> | |
269 </dependency> | |
270 </dependencies> | |
271 </profile> | |
272 <profile> | |
273 <id>codec-imagej</id> | |
274 <dependencies> | |
275 <dependency> | |
276 <groupId>digilib</groupId> | |
277 <artifactId>digilib-common-imagej</artifactId> | |
278 <type>jar</type> | |
279 <scope>compile</scope> | |
280 </dependency> | |
281 </dependencies> | |
282 </profile> | |
283 <profile> | |
284 <id>codec-bioformats</id> | |
285 <dependencies> | |
286 <dependency> | |
287 <groupId>digilib</groupId> | |
288 <artifactId>digilib-common-bioformats</artifactId> | |
289 <type>jar</type> | |
290 <scope>compile</scope> | |
291 </dependency> | |
292 </dependencies> | |
293 </profile> | |
1447 | 294 <profile> |
295 <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
|
296 <!-- external servlet filter to add CORS headers. enable in web.xml --> |
1447 | 297 <dependencies> |
298 <dependency> | |
299 <groupId>org.eclipse.jetty</groupId> | |
300 <artifactId>jetty-servlets</artifactId> | |
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
301 <version>9.2.13.v20150730</version> |
1447 | 302 </dependency> |
303 </dependencies> | |
304 </profile> | |
1466 | 305 <profile> |
306 <id>create-sprites</id> | |
307 <!-- create the button image sprite and CSS file --> | |
308 <build> | |
309 <plugins> | |
310 <plugin> | |
311 <groupId>net.jangaroo</groupId> | |
312 <artifactId>smartsprites-maven-plugin</artifactId> | |
313 <version>1.8</version> | |
314 <configuration> | |
315 <rootDirPath>src/main/webapp/jquery</rootDirPath> | |
316 <outputDirPath>${basedir}/src/main/webapp/jquery/</outputDirPath> | |
317 <logLevel>INFO</logLevel> | |
318 <spritePngDepth>AUTO</spritePngDepth> | |
319 <spritePngIeSix>false</spritePngIeSix> | |
320 <cssFileEncoding>UTF-8</cssFileEncoding> | |
321 <cssFileSuffix>-sprite</cssFileSuffix> | |
322 </configuration> | |
323 <executions> | |
324 <execution> | |
325 <id>createSprites</id> | |
326 <phase>generate-resources</phase> | |
327 <goals> | |
328 <goal>createSprites</goal> | |
329 </goals> | |
330 </execution> | |
331 </executions> | |
332 </plugin> | |
333 </plugins> | |
334 </build> | |
335 </profile> | |
1162 | 336 </profiles> |
1447 | 337 <dependencies> |
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
338 <dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
339 <groupId>org.eclipse.jetty</groupId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
340 <artifactId>jetty-servlet</artifactId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
341 <version>9.2.13.v20150730</version> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
342 <scope>test</scope> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
343 </dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
344 <dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
345 <groupId>org.eclipse.jetty</groupId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
346 <artifactId>jetty-http</artifactId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
347 <version>9.2.13.v20150730</version> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
348 <scope>test</scope> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
349 </dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
350 <dependency> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
351 <groupId>junit</groupId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
352 <artifactId>junit</artifactId> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
353 <version>4.12</version> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
354 <scope>test</scope> |
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
355 </dependency> |
1447 | 356 </dependencies> |
884 | 357 </project> |