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