Mercurial > hg > digilib
annotate pom.xml @ 1214:8490bfb0833c release-2.2
release version 2.2.2
author | robcast |
---|---|
date | Thu, 29 Aug 2013 13:50:29 +0200 |
parents | 4d874398315d |
children |
rev | line source |
---|---|
884 | 1 <?xml version="1.0" encoding="UTF-8"?> |
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"> |
1158 | 3 <modelVersion>4.0.0</modelVersion> |
884 | 4 |
1158 | 5 <groupId>digilib</groupId> |
6 <artifactId>digilib</artifactId> | |
1214 | 7 <version>2.2.2</version> |
1158 | 8 <packaging>pom</packaging> |
884 | 9 |
1158 | 10 <name>digilib</name> |
11 <description>The Digital Image Library</description> | |
12 <url>http://digilib.berlios.de</url> | |
1165 | 13 <inceptionYear>2001</inceptionYear> |
1158 | 14 |
15 <organization> | |
16 <name>digilib Community</name> | |
17 <url>http://digilib.berlios.de</url> | |
18 </organization> | |
884 | 19 |
1158 | 20 <developers> |
21 <developer> | |
22 <id>robcast</id> | |
23 <name>Robert Casties</name> | |
24 <email>robcast@berlios.de</email> | |
1162 | 25 <organization>Max Planck Institute for the History of Science (MPIWG)</organization> |
1158 | 26 <organizationUrl>http://www.mpiwg-berlin.mpg.de</organizationUrl> |
27 <roles> | |
28 </roles> | |
29 </developer> | |
30 <developer> | |
31 <id>hertzhaft</id> | |
32 <name>Martin Raspe</name> | |
33 <email>hertzhaft@berlios.de</email> | |
34 <organization>Bibliotheca Hertziana</organization> | |
35 <organizationUrl>http://www.biblhertz.it</organizationUrl> | |
36 </developer> | |
37 </developers> | |
38 <licenses> | |
39 <license> | |
40 <name>GNU General Lesser Public License (LGPL) version 3.0</name> | |
41 <url>http://www.gnu.org/licenses/lgpl-3.0.html</url> | |
42 <distribution>repo</distribution> | |
43 </license> | |
44 </licenses> | |
45 <scm> | |
46 <connection>scm:hg:http://hg.berlios.de/repos/digilib</connection> | |
47 <developerConnection>scm:hg:https://hg.berlios.de/repos/digilib</developerConnection> | |
48 <url>http://hg.berlios.de/repos/digilib</url> | |
49 </scm> | |
50 <issueManagement> | |
51 <system>Trac</system> | |
52 <url>https://it-dev.mpiwg-berlin.mpg.de/tracs/digilib</url> | |
53 </issueManagement> | |
890 | 54 |
1158 | 55 <build> |
56 <pluginManagement> | |
57 <plugins> | |
58 <plugin> | |
59 <groupId>org.apache.maven.plugins</groupId> | |
60 <artifactId>maven-compiler-plugin</artifactId> | |
61 <version>2.3.2</version> | |
62 </plugin> | |
63 </plugins> | |
64 </pluginManagement> | |
65 <plugins> | |
66 <plugin> | |
67 <groupId>org.apache.maven.plugins</groupId> | |
68 <artifactId>maven-scm-plugin</artifactId> | |
69 <version>1.5</version> | |
70 <configuration> | |
71 <goals>install</goals> | |
72 </configuration> | |
73 </plugin> | |
74 <plugin> | |
75 <groupId>org.codehaus.mojo</groupId> | |
76 <artifactId>license-maven-plugin</artifactId> | |
77 <version>1.4</version> | |
78 <configuration> | |
79 <!-- <verbose>false</verbose> --> | |
80 <licenseName>lgpl_v3</licenseName> | |
1165 | 81 <!-- <useMissingFile>true</useMissingFile> --> |
82 <!-- servlet-api is never included in packaging --> | |
83 <excludedArtifacts>servlet-api</excludedArtifacts> | |
1158 | 84 </configuration> |
85 </plugin> | |
1194
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
86 <plugin> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
87 <groupId>org.apache.maven.plugins</groupId> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
88 <artifactId>maven-javadoc-plugin</artifactId> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
89 <version>2.9.1</version> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
90 <configuration> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
91 <show>package</show> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
92 <nohelp>true</nohelp> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
93 </configuration> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
94 </plugin> |
1158 | 95 </plugins> |
96 </build> | |
97 <profiles> | |
98 <profile> | |
99 <id>servlet2</id> | |
1194
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
100 </profile> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
101 <profile> |
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
102 <id>servlet3</id> |
1158 | 103 <activation> |
104 <activeByDefault>true</activeByDefault> | |
105 </activation> | |
106 </profile> | |
107 <!-- optional modules with dependencies selected by profile --> | |
108 <profile> | |
109 <id>text</id> | |
110 <modules> | |
111 <module>text</module> | |
112 </modules> | |
113 </profile> | |
114 <profile> | |
115 <id>pdf</id> | |
116 <modules> | |
117 <module>pdf</module> | |
118 </modules> | |
119 </profile> | |
120 <profile> | |
121 <id>codec-jai</id> | |
122 <modules> | |
123 <module>common-jai</module> | |
124 </modules> | |
125 </profile> | |
126 <profile> | |
127 <id>codec-imagej</id> | |
128 <modules> | |
129 <module>common-imagej</module> | |
130 </modules> | |
131 </profile> | |
132 <profile> | |
133 <id>codec-bioformats</id> | |
134 <modules> | |
135 <module>common-bioformats</module> | |
136 </modules> | |
137 </profile> | |
138 </profiles> | |
139 <repositories> | |
140 </repositories> | |
884 | 141 |
1158 | 142 <dependencyManagement> |
143 <dependencies> | |
144 <dependency> | |
145 <groupId>log4j</groupId> | |
146 <artifactId>log4j</artifactId> | |
147 <version>1.2.14</version> | |
148 </dependency> | |
149 <!-- digilib module versions --> | |
150 <dependency> | |
151 <groupId>digilib</groupId> | |
152 <artifactId>digilib-common</artifactId> | |
1214 | 153 <version>2.2.2</version> |
1158 | 154 </dependency> |
155 <dependency> | |
156 <groupId>digilib</groupId> | |
157 <artifactId>digilib-common-jai</artifactId> | |
1214 | 158 <version>2.2.2</version> |
1158 | 159 </dependency> |
160 <dependency> | |
161 <groupId>digilib</groupId> | |
162 <artifactId>digilib-common-imagej</artifactId> | |
1214 | 163 <version>2.2.2</version> |
1158 | 164 </dependency> |
165 <dependency> | |
166 <groupId>digilib</groupId> | |
167 <artifactId>digilib-common-bioformats</artifactId> | |
1214 | 168 <version>2.2.2</version> |
1158 | 169 </dependency> |
170 <dependency> | |
171 <groupId>digilib</groupId> | |
172 <artifactId>digilib-pdf</artifactId> | |
1214 | 173 <version>2.2.2</version> |
1158 | 174 </dependency> |
175 <dependency> | |
176 <groupId>digilib</groupId> | |
177 <artifactId>digilib-text</artifactId> | |
1214 | 178 <version>2.2.2</version> |
1158 | 179 </dependency> |
180 <dependency> | |
181 <groupId>digilib</groupId> | |
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1165
diff
changeset
|
182 <artifactId>digilib-servlet</artifactId> |
1214 | 183 <version>2.2.2</version> |
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1165
diff
changeset
|
184 </dependency> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1165
diff
changeset
|
185 <dependency> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1165
diff
changeset
|
186 <groupId>digilib</groupId> |
1158 | 187 <artifactId>digilib-servlet2</artifactId> |
1214 | 188 <version>2.2.2</version> |
1158 | 189 </dependency> |
190 <dependency> | |
191 <groupId>digilib</groupId> | |
192 <artifactId>digilib-servlet3</artifactId> | |
1214 | 193 <version>2.2.2</version> |
1158 | 194 </dependency> |
195 <dependency> | |
196 <groupId>digilib</groupId> | |
197 <artifactId>digilib-webapp</artifactId> | |
1214 | 198 <version>2.2.2</version> |
1158 | 199 </dependency> |
200 </dependencies> | |
201 </dependencyManagement> | |
202 <properties> | |
203 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
204 </properties> | |
205 | |
206 <dependencies> | |
207 </dependencies> | |
208 <!-- default modules --> | |
209 <modules> | |
210 <module>common</module> | |
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1165
diff
changeset
|
211 <module>servlet</module> |
1158 | 212 <module>servlet2</module> |
213 <module>servlet3</module> | |
214 <module>webapp</module> | |
215 </modules> | |
884 | 216 </project> |