Mercurial > hg > digilib-old
annotate webapp/pom.xml @ 1113:7affda55c10e
using annotator in digilib works somewhat now.
author | robcast |
---|---|
date | Thu, 01 Nov 2012 18:38:11 +0100 |
parents | f34891279a6e |
children |
rev | line source |
---|---|
893 | 1 <?xml version="1.0"?> |
904 | 2 <project |
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"> | |
893 | 5 <modelVersion>4.0.0</modelVersion> |
6 <parent> | |
7 <artifactId>digilib</artifactId> | |
8 <groupId>digilib</groupId> | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
9 <version>2.1-SNAPSHOT</version> |
893 | 10 </parent> |
897 | 11 <artifactId>digilib-webapp</artifactId> |
12 <name>digilib-webapp</name> | |
903 | 13 <description>The Digital Image Library - web application server and HTML and JS clients</description> |
897 | 14 <url>http://digilib.berlios.de</url> |
893 | 15 <packaging>war</packaging> |
16 | |
17 <properties> | |
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
19 </properties> | |
20 | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
21 <build> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
22 <pluginManagement> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
23 <plugins> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
24 <plugin> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
25 <groupId>org.apache.maven.plugins</groupId> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
26 <artifactId>maven-war-plugin</artifactId> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
27 <version>2.1.1</version> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
28 </plugin> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
29 </plugins> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
30 </pluginManagement> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
31 </build> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
32 |
903 | 33 <profiles> |
904 | 34 <profile> |
35 <id>servlet2</id> | |
36 <activation> | |
37 <activeByDefault>true</activeByDefault> | |
38 <property> | |
39 <name>servletapi</name> | |
40 <value>2</value> | |
41 </property> | |
42 </activation> | |
43 <dependencies> | |
44 <dependency> | |
45 <groupId>digilib</groupId> | |
46 <artifactId>digilib-servlet2</artifactId> | |
47 <type>jar</type> | |
48 <scope>compile</scope> | |
49 </dependency> | |
50 </dependencies> | |
51 <build> | |
52 <plugins> | |
53 <plugin> | |
54 <groupId>org.apache.maven.plugins</groupId> | |
55 <artifactId>maven-war-plugin</artifactId> | |
56 <configuration> | |
57 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.3.xml</webXml> | |
909 | 58 <classifier>srv2</classifier> |
904 | 59 </configuration> |
60 </plugin> | |
61 </plugins> | |
62 </build> | |
63 </profile> | |
64 <profile> | |
65 <id>servlet3</id> | |
66 <activation> | |
67 <property> | |
68 <name>servletapi</name> | |
69 <value>3</value> | |
70 </property> | |
71 </activation> | |
72 <dependencies> | |
73 <dependency> | |
74 <groupId>digilib</groupId> | |
75 <artifactId>digilib-servlet3</artifactId> | |
76 <type>jar</type> | |
77 <scope>compile</scope> | |
78 </dependency> | |
79 </dependencies> | |
80 <build> | |
903 | 81 <plugins> |
82 <plugin> | |
83 <groupId>org.apache.maven.plugins</groupId> | |
84 <artifactId>maven-war-plugin</artifactId> | |
85 <configuration> | |
86 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml> | |
87 <classifier>srv3</classifier> | |
88 </configuration> | |
89 </plugin> | |
916 | 90 <plugin> |
91 <groupId>org.apache.maven.plugins</groupId> | |
92 <artifactId>maven-compiler-plugin</artifactId> | |
93 <configuration> | |
94 <source>1.6</source> | |
95 <target>1.6</target> | |
96 </configuration> | |
97 </plugin> | |
903 | 98 </plugins> |
99 </build> | |
904 | 100 </profile> |
101 <profile> | |
102 <id>pdf</id> | |
103 <dependencies> | |
104 <dependency> | |
105 <groupId>digilib</groupId> | |
106 <artifactId>digilib-pdf</artifactId> | |
107 <type>jar</type> | |
108 <scope>compile</scope> | |
109 </dependency> | |
110 </dependencies> | |
111 </profile> | |
905 | 112 <profile> |
113 <id>text</id> | |
114 <dependencies> | |
115 <dependency> | |
116 <groupId>digilib</groupId> | |
117 <artifactId>digilib-text</artifactId> | |
118 <type>jar</type> | |
119 <scope>compile</scope> | |
120 </dependency> | |
121 </dependencies> | |
122 </profile> | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
123 <profile> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
124 <id>codec-jai</id> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
125 <dependencies> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
126 <dependency> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
127 <groupId>digilib</groupId> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
128 <artifactId>digilib-common-jai</artifactId> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
129 <type>jar</type> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
130 <scope>compile</scope> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
131 </dependency> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
132 </dependencies> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
133 </profile> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
134 <profile> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
135 <id>codec-imagej</id> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
136 <dependencies> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
137 <dependency> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
138 <groupId>digilib</groupId> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
139 <artifactId>digilib-common-imagej</artifactId> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
140 <type>jar</type> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
141 <scope>compile</scope> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
142 </dependency> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
143 </dependencies> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
916
diff
changeset
|
144 </profile> |
979
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
145 <profile> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
146 <id>codec-bioformats</id> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
147 <dependencies> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
148 <dependency> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
149 <groupId>digilib</groupId> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
150 <artifactId>digilib-common-bioformats</artifactId> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
151 <type>jar</type> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
152 <scope>compile</scope> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
153 </dependency> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
154 </dependencies> |
f34891279a6e
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
960
diff
changeset
|
155 </profile> |
903 | 156 </profiles> |
893 | 157 </project> |