Mercurial > hg > digilib
annotate webapp/pom.xml @ 1453:e7d94cfbec0b release-2.3
Merge from default branch
9429bb9c3a4239e133b878a464d802bc8984ae60
| author | robcast |
|---|---|
| date | Fri, 13 Nov 2015 13:09:08 +0100 |
| parents | 2a248500ede2 fa63f437d5c5 |
| children | 02252febba09 |
| rev | line source |
|---|---|
| 884 | 1 <?xml version="1.0"?> |
|
1399
59805085a237
[maven-release-plugin] prepare release release-2.3.1
robcast
parents:
1279
diff
changeset
|
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1162 | 3 <modelVersion>4.0.0</modelVersion> |
| 4 <parent> | |
| 5 <artifactId>digilib</artifactId> | |
| 6 <groupId>digilib</groupId> | |
| 1439 | 7 <version>2.3.4</version> |
| 1162 | 8 </parent> |
| 9 <artifactId>digilib-webapp</artifactId> | |
| 10 <name>digilib-webapp</name> | |
| 11 <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
|
12 <url>http://digilib.sourceforge.net</url> |
| 1162 | 13 <packaging>war</packaging> |
|
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
14 |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
15 <properties> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
16 <skipTests>true</skipTests> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
17 </properties> |
| 884 | 18 |
| 1162 | 19 <build> |
| 20 <pluginManagement> | |
| 21 <plugins> | |
| 22 <plugin> | |
| 23 <groupId>org.apache.maven.plugins</groupId> | |
| 24 <artifactId>maven-war-plugin</artifactId> | |
| 1401 | 25 <version>2.6</version> |
| 1162 | 26 </plugin> |
| 27 <plugin> | |
| 28 <groupId>org.codehaus.mojo</groupId> | |
| 29 <artifactId>license-maven-plugin</artifactId> | |
| 30 <version>1.4</version> | |
| 31 <configuration> | |
| 32 <includes> | |
| 33 <include>**/*digilib*.js</include> | |
| 34 <include>**/*.jsp</include> | |
| 35 </includes> | |
| 36 </configuration> | |
| 37 </plugin> | |
|
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
38 <plugin> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
39 <groupId>org.apache.maven.plugins</groupId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
40 <artifactId>maven-surefire-plugin</artifactId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
41 <version>2.19</version> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
42 <configuration> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
43 <skip>${skipTests}</skip> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
44 </configuration> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
45 </plugin> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
46 </plugins> |
| 1162 | 47 </pluginManagement> |
| 48 </build> | |
| 49 <profiles> | |
| 50 <profile> | |
| 51 <id>servlet2</id> | |
| 52 <activation> | |
| 53 <property> | |
| 54 <name>servletapi</name> | |
| 55 <value>2</value> | |
| 56 </property> | |
| 57 </activation> | |
| 58 <dependencies> | |
| 59 <dependency> | |
| 60 <groupId>digilib</groupId> | |
| 61 <artifactId>digilib-servlet2</artifactId> | |
| 62 <type>jar</type> | |
| 63 <scope>compile</scope> | |
| 64 </dependency> | |
| 65 </dependencies> | |
| 66 <build> | |
| 67 <plugins> | |
| 68 <plugin> | |
| 69 <groupId>org.apache.maven.plugins</groupId> | |
| 70 <artifactId>maven-war-plugin</artifactId> | |
| 71 <configuration> | |
| 1422 | 72 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.4.xml</webXml> |
| 1162 | 73 <classifier>srv2</classifier> |
| 74 </configuration> | |
| 75 </plugin> | |
| 76 </plugins> | |
| 77 </build> | |
| 78 </profile> | |
| 79 <profile> | |
| 80 <id>servlet3</id> | |
| 81 <activation> | |
| 1195 | 82 <activeByDefault>true</activeByDefault> |
| 1162 | 83 <property> |
| 84 <name>servletapi</name> | |
| 85 <value>3</value> | |
| 86 </property> | |
| 87 </activation> | |
| 88 <dependencies> | |
| 89 <dependency> | |
| 90 <groupId>digilib</groupId> | |
| 91 <artifactId>digilib-servlet3</artifactId> | |
| 92 <type>jar</type> | |
| 93 <scope>compile</scope> | |
| 94 </dependency> | |
| 95 </dependencies> | |
| 96 <build> | |
| 97 <plugins> | |
| 98 <plugin> | |
| 99 <groupId>org.apache.maven.plugins</groupId> | |
| 100 <artifactId>maven-war-plugin</artifactId> | |
| 101 <configuration> | |
| 102 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml> | |
| 103 <classifier>srv3</classifier> | |
| 104 </configuration> | |
| 105 </plugin> | |
| 106 <plugin> | |
| 107 <groupId>org.apache.maven.plugins</groupId> | |
| 108 <artifactId>maven-compiler-plugin</artifactId> | |
| 109 <configuration> | |
| 1401 | 110 <source>1.7</source> |
| 111 <target>1.7</target> | |
| 1162 | 112 </configuration> |
| 113 </plugin> | |
| 114 </plugins> | |
| 115 </build> | |
| 116 </profile> | |
| 117 <profile> | |
| 118 <id>pdf</id> | |
| 119 <dependencies> | |
| 120 <dependency> | |
| 121 <groupId>digilib</groupId> | |
| 122 <artifactId>digilib-pdf</artifactId> | |
| 123 <type>jar</type> | |
| 124 <scope>compile</scope> | |
| 125 </dependency> | |
| 126 </dependencies> | |
| 127 </profile> | |
| 128 <profile> | |
| 129 <id>text</id> | |
| 130 <dependencies> | |
| 131 <dependency> | |
| 132 <groupId>digilib</groupId> | |
| 133 <artifactId>digilib-text</artifactId> | |
| 134 <type>jar</type> | |
| 135 <scope>compile</scope> | |
| 136 </dependency> | |
| 137 </dependencies> | |
| 138 </profile> | |
| 139 <profile> | |
| 140 <id>codec-jai</id> | |
| 141 <dependencies> | |
| 142 <dependency> | |
| 143 <groupId>digilib</groupId> | |
| 144 <artifactId>digilib-common-jai</artifactId> | |
| 145 <type>jar</type> | |
| 146 <scope>compile</scope> | |
| 147 </dependency> | |
| 148 </dependencies> | |
| 149 </profile> | |
| 150 <profile> | |
| 151 <id>codec-imagej</id> | |
| 152 <dependencies> | |
| 153 <dependency> | |
| 154 <groupId>digilib</groupId> | |
| 155 <artifactId>digilib-common-imagej</artifactId> | |
| 156 <type>jar</type> | |
| 157 <scope>compile</scope> | |
| 158 </dependency> | |
| 159 </dependencies> | |
| 160 </profile> | |
| 161 <profile> | |
| 162 <id>codec-bioformats</id> | |
| 163 <dependencies> | |
| 164 <dependency> | |
| 165 <groupId>digilib</groupId> | |
| 166 <artifactId>digilib-common-bioformats</artifactId> | |
| 167 <type>jar</type> | |
| 168 <scope>compile</scope> | |
| 169 </dependency> | |
| 170 </dependencies> | |
| 171 </profile> | |
| 1447 | 172 <profile> |
| 173 <id>cors-filter</id> | |
| 174 <activation> | |
| 175 <activeByDefault>true</activeByDefault> | |
| 176 </activation> | |
| 177 <!-- external servlet filter to add CORS headers --> | |
| 178 <dependencies> | |
| 179 <dependency> | |
| 180 <groupId>org.eclipse.jetty</groupId> | |
| 181 <artifactId>jetty-servlets</artifactId> | |
|
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
182 <version>9.2.13.v20150730</version> |
| 1447 | 183 </dependency> |
| 184 </dependencies> | |
| 185 </profile> | |
| 1162 | 186 </profiles> |
| 1447 | 187 <dependencies> |
|
1448
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
188 <dependency> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
189 <groupId>org.eclipse.jetty</groupId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
190 <artifactId>jetty-servlet</artifactId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
191 <version>9.2.13.v20150730</version> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
192 <scope>test</scope> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
193 </dependency> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
194 <dependency> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
195 <groupId>org.eclipse.jetty</groupId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
196 <artifactId>jetty-http</artifactId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
197 <version>9.2.13.v20150730</version> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
198 <scope>test</scope> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
199 </dependency> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
200 <dependency> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
201 <groupId>junit</groupId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
202 <artifactId>junit</artifactId> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
203 <version>4.12</version> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
204 <scope>test</scope> |
|
a2da0b5caedd
adding the first tests for digilib's scaling modes.
robcast
parents:
1447
diff
changeset
|
205 </dependency> |
| 1447 | 206 </dependencies> |
| 884 | 207 </project> |
