annotate common/pom.xml @ 1132:d47513632da5

additional annotationSafeTokenUrl for https url, used with passwords. we don't always use https for issues with self-signed certs.
author robcast
date Tue, 13 Nov 2012 19:29:23 +0100
parents b2d97b842612
children 6423240583fb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
893
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
1 <?xml version="1.0"?>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
4 <modelVersion>4.0.0</modelVersion>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
5 <parent>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
6 <artifactId>digilib</artifactId>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
7 <groupId>digilib</groupId>
960
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
8 <version>2.1-SNAPSHOT</version>
893
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
9 </parent>
903
7779b37d1d05 refactored into maven modules per servlet type.
robcast
parents: 899
diff changeset
10 <artifactId>digilib-common</artifactId>
7779b37d1d05 refactored into maven modules per servlet type.
robcast
parents: 899
diff changeset
11 <name>digilib-common</name>
7779b37d1d05 refactored into maven modules per servlet type.
robcast
parents: 899
diff changeset
12 <description>The Digital Image Library - common library</description>
894
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
13 <url>http://digilib.berlios.de</url>
893
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
14 <packaging>jar</packaging>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
15
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
16 <properties>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
18 </properties>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
19
960
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
20 <repositories>
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
21 <!-- This provides the required versions of JAI-ImageIO -->
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
22 <repository>
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
23 <id>geotools.osgeo.org</id>
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
24 <name>Geotools repository</name>
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
25 <url>http://download.osgeo.org/webdav/geotools/</url>
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
26 </repository>
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
27 </repositories>
893
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
28 <dependencies>
898
64f2cb1061a4 better pom - builds war now!
robcast
parents: 897
diff changeset
29 <dependency>
64f2cb1061a4 better pom - builds war now!
robcast
parents: 897
diff changeset
30 <groupId>javax.media</groupId>
64f2cb1061a4 better pom - builds war now!
robcast
parents: 897
diff changeset
31 <artifactId>jai_imageio</artifactId>
899
12b5a3e04b13 clean up
robcast
parents: 898
diff changeset
32 <type>jar</type>
960
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
33 <version>1.1</version>
899
12b5a3e04b13 clean up
robcast
parents: 898
diff changeset
34 <scope>compile</scope>
898
64f2cb1061a4 better pom - builds war now!
robcast
parents: 897
diff changeset
35 </dependency>
894
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
36 <dependency>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
37 <groupId>org.devlib.schmidt</groupId>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
38 <artifactId>imageinfo</artifactId>
960
b2d97b842612 moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents: 903
diff changeset
39 <version>1.9</version>
894
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
40 <type>jar</type>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
41 <scope>compile</scope>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
42 </dependency>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
43 <dependency>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
44 <groupId>org.jdom</groupId>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
45 <artifactId>jdom</artifactId>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
46 <type>jar</type>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
47 <scope>compile</scope>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
48 </dependency>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
49 <dependency>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
50 <groupId>log4j</groupId>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
51 <artifactId>log4j</artifactId>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
52 <type>jar</type>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
53 <scope>compile</scope>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
54 </dependency>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
55 <dependency>
903
7779b37d1d05 refactored into maven modules per servlet type.
robcast
parents: 899
diff changeset
56 <groupId>javax.servlet</groupId>
894
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
57 <artifactId>servlet-api</artifactId>
903
7779b37d1d05 refactored into maven modules per servlet type.
robcast
parents: 899
diff changeset
58 <version>2.3</version>
894
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
59 <type>jar</type>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
60 <scope>provided</scope>
6e15201cdce9 make servlet compile with maven
robcast
parents: 893
diff changeset
61 </dependency>
893
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
62 </dependencies>
1f7ab2c3c27b add maven poms (first version)
robcast
parents:
diff changeset
63 </project>