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>
|
|
8 <version>2.1-SNAPSHOT</version>
|
|
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>
|
|
87 </plugins>
|
|
88 </build>
|
|
89 <profiles>
|
|
90 <profile>
|
|
91 <id>servlet2</id>
|
|
92 <activation>
|
|
93 <activeByDefault>true</activeByDefault>
|
|
94 </activation>
|
|
95 </profile>
|
|
96 <profile>
|
|
97 <id>servlet3</id>
|
|
98 </profile>
|
|
99 <!-- optional modules with dependencies selected by profile -->
|
|
100 <profile>
|
|
101 <id>text</id>
|
|
102 <modules>
|
|
103 <module>text</module>
|
|
104 </modules>
|
|
105 </profile>
|
|
106 <profile>
|
|
107 <id>pdf</id>
|
|
108 <modules>
|
|
109 <module>pdf</module>
|
|
110 </modules>
|
|
111 </profile>
|
|
112 <profile>
|
|
113 <id>codec-jai</id>
|
|
114 <modules>
|
|
115 <module>common-jai</module>
|
|
116 </modules>
|
|
117 </profile>
|
|
118 <profile>
|
|
119 <id>codec-imagej</id>
|
|
120 <modules>
|
|
121 <module>common-imagej</module>
|
|
122 </modules>
|
|
123 </profile>
|
|
124 <profile>
|
|
125 <id>codec-bioformats</id>
|
|
126 <modules>
|
|
127 <module>common-bioformats</module>
|
|
128 </modules>
|
|
129 </profile>
|
|
130 </profiles>
|
|
131 <repositories>
|
|
132 </repositories>
|
884
|
133
|
1158
|
134 <dependencyManagement>
|
|
135 <dependencies>
|
|
136 <dependency>
|
|
137 <groupId>org.jdom</groupId>
|
|
138 <artifactId>jdom</artifactId>
|
1165
|
139 <version>1.1.3</version>
|
1158
|
140 </dependency>
|
|
141 <dependency>
|
|
142 <groupId>log4j</groupId>
|
|
143 <artifactId>log4j</artifactId>
|
|
144 <version>1.2.14</version>
|
|
145 </dependency>
|
|
146 <!-- digilib module versions -->
|
|
147 <dependency>
|
|
148 <groupId>digilib</groupId>
|
|
149 <artifactId>digilib-common</artifactId>
|
|
150 <version>2.1-SNAPSHOT</version>
|
|
151 </dependency>
|
|
152 <dependency>
|
|
153 <groupId>digilib</groupId>
|
|
154 <artifactId>digilib-common-jai</artifactId>
|
|
155 <version>2.1-SNAPSHOT</version>
|
|
156 </dependency>
|
|
157 <dependency>
|
|
158 <groupId>digilib</groupId>
|
|
159 <artifactId>digilib-common-imagej</artifactId>
|
|
160 <version>2.1-SNAPSHOT</version>
|
|
161 </dependency>
|
|
162 <dependency>
|
|
163 <groupId>digilib</groupId>
|
|
164 <artifactId>digilib-common-bioformats</artifactId>
|
|
165 <version>2.1-SNAPSHOT</version>
|
|
166 </dependency>
|
|
167 <dependency>
|
|
168 <groupId>digilib</groupId>
|
|
169 <artifactId>digilib-pdf</artifactId>
|
|
170 <version>2.1-SNAPSHOT</version>
|
|
171 </dependency>
|
|
172 <dependency>
|
|
173 <groupId>digilib</groupId>
|
|
174 <artifactId>digilib-text</artifactId>
|
|
175 <version>2.1-SNAPSHOT</version>
|
|
176 </dependency>
|
|
177 <dependency>
|
|
178 <groupId>digilib</groupId>
|
|
179 <artifactId>digilib-servlet2</artifactId>
|
|
180 <version>2.1-SNAPSHOT</version>
|
|
181 </dependency>
|
|
182 <dependency>
|
|
183 <groupId>digilib</groupId>
|
|
184 <artifactId>digilib-servlet3</artifactId>
|
|
185 <version>2.1-SNAPSHOT</version>
|
|
186 </dependency>
|
|
187 <dependency>
|
|
188 <groupId>digilib</groupId>
|
|
189 <artifactId>digilib-webapp</artifactId>
|
|
190 <version>2.1-SNAPSHOT</version>
|
|
191 </dependency>
|
|
192 </dependencies>
|
|
193 </dependencyManagement>
|
|
194 <properties>
|
|
195 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
196 </properties>
|
|
197
|
|
198 <dependencies>
|
|
199 </dependencies>
|
|
200 <!-- default modules -->
|
|
201 <modules>
|
|
202 <module>common</module>
|
|
203 <module>servlet2</module>
|
|
204 <module>servlet3</module>
|
|
205 <module>webapp</module>
|
|
206 </modules>
|
884
|
207 </project> |