Mercurial > hg > digilib
annotate webapp/pom.xml @ 1214:8490bfb0833c release-2.2
release version 2.2.2
author | robcast |
---|---|
date | Thu, 29 Aug 2013 13:50:29 +0200 |
parents | 2cba651b91ce |
children |
rev | line source |
---|---|
884 | 1 <?xml version="1.0"?> |
1214 | 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> | |
1214 | 7 <version>2.2.2</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> | |
12 <url>http://digilib.berlios.de</url> | |
13 <packaging>war</packaging> | |
884 | 14 |
1162 | 15 <properties> |
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
17 </properties> | |
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
907
diff
changeset
|
18 |
1162 | 19 <build> |
20 <pluginManagement> | |
21 <plugins> | |
22 <plugin> | |
23 <groupId>org.apache.maven.plugins</groupId> | |
24 <artifactId>maven-war-plugin</artifactId> | |
25 <version>2.1.1</version> | |
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> | |
38 </plugins> | |
39 </pluginManagement> | |
40 </build> | |
41 <profiles> | |
42 <profile> | |
43 <id>servlet2</id> | |
44 <activation> | |
45 <property> | |
46 <name>servletapi</name> | |
47 <value>2</value> | |
48 </property> | |
49 </activation> | |
50 <dependencies> | |
51 <dependency> | |
52 <groupId>digilib</groupId> | |
53 <artifactId>digilib-servlet2</artifactId> | |
54 <type>jar</type> | |
55 <scope>compile</scope> | |
56 </dependency> | |
57 </dependencies> | |
58 <build> | |
59 <plugins> | |
60 <plugin> | |
61 <groupId>org.apache.maven.plugins</groupId> | |
62 <artifactId>maven-war-plugin</artifactId> | |
63 <configuration> | |
64 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.3.xml</webXml> | |
65 <classifier>srv2</classifier> | |
66 </configuration> | |
67 </plugin> | |
68 </plugins> | |
69 </build> | |
70 </profile> | |
71 <profile> | |
72 <id>servlet3</id> | |
73 <activation> | |
1195 | 74 <activeByDefault>true</activeByDefault> |
1162 | 75 <property> |
76 <name>servletapi</name> | |
77 <value>3</value> | |
78 </property> | |
79 </activation> | |
80 <dependencies> | |
81 <dependency> | |
82 <groupId>digilib</groupId> | |
83 <artifactId>digilib-servlet3</artifactId> | |
84 <type>jar</type> | |
85 <scope>compile</scope> | |
86 </dependency> | |
87 </dependencies> | |
88 <build> | |
89 <plugins> | |
90 <plugin> | |
91 <groupId>org.apache.maven.plugins</groupId> | |
92 <artifactId>maven-war-plugin</artifactId> | |
93 <configuration> | |
94 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml> | |
95 <classifier>srv3</classifier> | |
96 </configuration> | |
97 </plugin> | |
98 <plugin> | |
99 <groupId>org.apache.maven.plugins</groupId> | |
100 <artifactId>maven-compiler-plugin</artifactId> | |
101 <configuration> | |
102 <source>1.6</source> | |
103 <target>1.6</target> | |
104 </configuration> | |
105 </plugin> | |
106 </plugins> | |
107 </build> | |
108 </profile> | |
109 <profile> | |
110 <id>pdf</id> | |
111 <dependencies> | |
112 <dependency> | |
113 <groupId>digilib</groupId> | |
114 <artifactId>digilib-pdf</artifactId> | |
115 <type>jar</type> | |
116 <scope>compile</scope> | |
117 </dependency> | |
118 </dependencies> | |
119 </profile> | |
120 <profile> | |
121 <id>text</id> | |
122 <dependencies> | |
123 <dependency> | |
124 <groupId>digilib</groupId> | |
125 <artifactId>digilib-text</artifactId> | |
126 <type>jar</type> | |
127 <scope>compile</scope> | |
128 </dependency> | |
129 </dependencies> | |
130 </profile> | |
131 <profile> | |
132 <id>codec-jai</id> | |
133 <dependencies> | |
134 <dependency> | |
135 <groupId>digilib</groupId> | |
136 <artifactId>digilib-common-jai</artifactId> | |
137 <type>jar</type> | |
138 <scope>compile</scope> | |
139 </dependency> | |
140 </dependencies> | |
141 </profile> | |
142 <profile> | |
143 <id>codec-imagej</id> | |
144 <dependencies> | |
145 <dependency> | |
146 <groupId>digilib</groupId> | |
147 <artifactId>digilib-common-imagej</artifactId> | |
148 <type>jar</type> | |
149 <scope>compile</scope> | |
150 </dependency> | |
151 </dependencies> | |
152 </profile> | |
153 <profile> | |
154 <id>codec-bioformats</id> | |
155 <dependencies> | |
156 <dependency> | |
157 <groupId>digilib</groupId> | |
158 <artifactId>digilib-common-bioformats</artifactId> | |
159 <type>jar</type> | |
160 <scope>compile</scope> | |
161 </dependency> | |
162 </dependencies> | |
163 </profile> | |
164 </profiles> | |
884 | 165 </project> |