Mercurial > hg > digilib
annotate webapp/pom.xml @ 1438:b8f2fde0f034 release-2.3
Merge with 1edc05d955cba1bd06c340b60650f507be4af755
author | robcast |
---|---|
date | Tue, 10 Nov 2015 14:30:43 +0100 |
parents | 59805085a237 053ff2ca45e3 |
children | 2a248500ede2 |
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> | |
1399
59805085a237
[maven-release-plugin] prepare release release-2.3.1
robcast
parents:
1279
diff
changeset
|
7 <version>2.3.1</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> |
884 | 14 |
1162 | 15 <build> |
16 <pluginManagement> | |
17 <plugins> | |
18 <plugin> | |
19 <groupId>org.apache.maven.plugins</groupId> | |
20 <artifactId>maven-war-plugin</artifactId> | |
1401 | 21 <version>2.6</version> |
1162 | 22 </plugin> |
23 <plugin> | |
24 <groupId>org.codehaus.mojo</groupId> | |
25 <artifactId>license-maven-plugin</artifactId> | |
26 <version>1.4</version> | |
27 <configuration> | |
28 <includes> | |
29 <include>**/*digilib*.js</include> | |
30 <include>**/*.jsp</include> | |
31 </includes> | |
32 </configuration> | |
33 </plugin> | |
34 </plugins> | |
35 </pluginManagement> | |
36 </build> | |
37 <profiles> | |
38 <profile> | |
39 <id>servlet2</id> | |
40 <activation> | |
41 <property> | |
42 <name>servletapi</name> | |
43 <value>2</value> | |
44 </property> | |
45 </activation> | |
46 <dependencies> | |
47 <dependency> | |
48 <groupId>digilib</groupId> | |
49 <artifactId>digilib-servlet2</artifactId> | |
50 <type>jar</type> | |
51 <scope>compile</scope> | |
52 </dependency> | |
53 </dependencies> | |
54 <build> | |
55 <plugins> | |
56 <plugin> | |
57 <groupId>org.apache.maven.plugins</groupId> | |
58 <artifactId>maven-war-plugin</artifactId> | |
59 <configuration> | |
1422 | 60 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.4.xml</webXml> |
1162 | 61 <classifier>srv2</classifier> |
62 </configuration> | |
63 </plugin> | |
64 </plugins> | |
65 </build> | |
66 </profile> | |
67 <profile> | |
68 <id>servlet3</id> | |
69 <activation> | |
1195 | 70 <activeByDefault>true</activeByDefault> |
1162 | 71 <property> |
72 <name>servletapi</name> | |
73 <value>3</value> | |
74 </property> | |
75 </activation> | |
76 <dependencies> | |
77 <dependency> | |
78 <groupId>digilib</groupId> | |
79 <artifactId>digilib-servlet3</artifactId> | |
80 <type>jar</type> | |
81 <scope>compile</scope> | |
82 </dependency> | |
83 </dependencies> | |
84 <build> | |
85 <plugins> | |
86 <plugin> | |
87 <groupId>org.apache.maven.plugins</groupId> | |
88 <artifactId>maven-war-plugin</artifactId> | |
89 <configuration> | |
90 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml> | |
91 <classifier>srv3</classifier> | |
92 </configuration> | |
93 </plugin> | |
94 <plugin> | |
95 <groupId>org.apache.maven.plugins</groupId> | |
96 <artifactId>maven-compiler-plugin</artifactId> | |
97 <configuration> | |
1401 | 98 <source>1.7</source> |
99 <target>1.7</target> | |
1162 | 100 </configuration> |
101 </plugin> | |
102 </plugins> | |
103 </build> | |
104 </profile> | |
105 <profile> | |
106 <id>pdf</id> | |
107 <dependencies> | |
108 <dependency> | |
109 <groupId>digilib</groupId> | |
110 <artifactId>digilib-pdf</artifactId> | |
111 <type>jar</type> | |
112 <scope>compile</scope> | |
113 </dependency> | |
114 </dependencies> | |
115 </profile> | |
116 <profile> | |
117 <id>text</id> | |
118 <dependencies> | |
119 <dependency> | |
120 <groupId>digilib</groupId> | |
121 <artifactId>digilib-text</artifactId> | |
122 <type>jar</type> | |
123 <scope>compile</scope> | |
124 </dependency> | |
125 </dependencies> | |
126 </profile> | |
127 <profile> | |
128 <id>codec-jai</id> | |
129 <dependencies> | |
130 <dependency> | |
131 <groupId>digilib</groupId> | |
132 <artifactId>digilib-common-jai</artifactId> | |
133 <type>jar</type> | |
134 <scope>compile</scope> | |
135 </dependency> | |
136 </dependencies> | |
137 </profile> | |
138 <profile> | |
139 <id>codec-imagej</id> | |
140 <dependencies> | |
141 <dependency> | |
142 <groupId>digilib</groupId> | |
143 <artifactId>digilib-common-imagej</artifactId> | |
144 <type>jar</type> | |
145 <scope>compile</scope> | |
146 </dependency> | |
147 </dependencies> | |
148 </profile> | |
149 <profile> | |
150 <id>codec-bioformats</id> | |
151 <dependencies> | |
152 <dependency> | |
153 <groupId>digilib</groupId> | |
154 <artifactId>digilib-common-bioformats</artifactId> | |
155 <type>jar</type> | |
156 <scope>compile</scope> | |
157 </dependency> | |
158 </dependencies> | |
159 </profile> | |
160 </profiles> | |
884 | 161 </project> |