Mercurial > hg > digilib
annotate pom.xml @ 1000:6ad0c50fb93f
switch bird's eye off for fullzoom
| author | hertzhaft |
|---|---|
| date | Sat, 18 Feb 2012 09:54:12 +0100 |
| parents | 6e7a87da622f |
| children | 8c5638e9701c |
| rev | line source |
|---|---|
| 884 | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 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"> | |
| 3 <modelVersion>4.0.0</modelVersion> | |
| 4 | |
| 5 <groupId>digilib</groupId> | |
| 6 <artifactId>digilib</artifactId> | |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
7 <version>2.1-SNAPSHOT</version> |
| 884 | 8 <packaging>pom</packaging> |
| 9 | |
| 10 <name>digilib</name> | |
| 890 | 11 <description>The Digital Image Library</description> |
| 888 | 12 <url>http://digilib.berlios.de</url> |
| 884 | 13 |
| 891 | 14 <build> |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
15 <pluginManagement> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
16 <plugins> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
17 <plugin> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
18 <groupId>org.apache.maven.plugins</groupId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
19 <artifactId>maven-compiler-plugin</artifactId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
20 <version>2.3.2</version> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
21 </plugin> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
22 </plugins> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
23 </pluginManagement> |
| 891 | 24 <plugins> |
| 25 <plugin> | |
| 26 <groupId>org.apache.maven.plugins</groupId> | |
| 27 <artifactId>maven-scm-plugin</artifactId> | |
| 28 <version>1.5</version> | |
| 29 <configuration> | |
| 30 <goals>install</goals> | |
| 31 </configuration> | |
| 32 </plugin> | |
| 33 </plugins> | |
| 34 </build> | |
| 894 | 35 <profiles> |
| 36 <profile> | |
| 37 <id>servlet2</id> | |
| 38 <activation> | |
| 39 <activeByDefault>true</activeByDefault> | |
| 40 </activation> | |
| 41 </profile> | |
| 42 </profiles> | |
| 890 | 43 <repositories> |
| 44 </repositories> | |
| 45 | |
| 46 <dependencyManagement> | |
| 47 <dependencies> | |
| 48 <dependency> | |
| 49 <groupId>org.jdom</groupId> | |
| 50 <artifactId>jdom</artifactId> | |
| 51 <version>1.1</version> | |
| 52 </dependency> | |
| 53 <dependency> | |
| 54 <groupId>log4j</groupId> | |
| 55 <artifactId>log4j</artifactId> | |
| 56 <version>1.2.14</version> | |
| 57 </dependency> | |
|
969
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
58 <!-- digilib module versions --> |
| 890 | 59 <dependency> |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
60 <groupId>digilib</groupId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
61 <artifactId>digilib-common</artifactId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
62 <version>2.1-SNAPSHOT</version> |
| 890 | 63 </dependency> |
| 64 <dependency> | |
| 894 | 65 <groupId>digilib</groupId> |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
66 <artifactId>digilib-common-jai</artifactId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
67 <version>2.1-SNAPSHOT</version> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
68 </dependency> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
69 <dependency> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
70 <groupId>digilib</groupId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
71 <artifactId>digilib-common-imagej</artifactId> |
|
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
72 <version>2.1-SNAPSHOT</version> |
|
969
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
73 </dependency> |
|
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
74 <dependency> |
|
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
75 <groupId>digilib</groupId> |
|
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
76 <artifactId>digilib-common-bioformats</artifactId> |
|
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
77 <version>2.1-SNAPSHOT</version> |
| 894 | 78 </dependency> |
| 79 <dependency> | |
| 80 <groupId>digilib</groupId> | |
| 81 <artifactId>digilib-pdf</artifactId> | |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
82 <version>2.1-SNAPSHOT</version> |
| 894 | 83 </dependency> |
| 84 <dependency> | |
| 85 <groupId>digilib</groupId> | |
| 901 | 86 <artifactId>digilib-text</artifactId> |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
87 <version>2.1-SNAPSHOT</version> |
| 901 | 88 </dependency> |
| 89 <dependency> | |
| 90 <groupId>digilib</groupId> | |
| 894 | 91 <artifactId>digilib-servlet2</artifactId> |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
92 <version>2.1-SNAPSHOT</version> |
| 894 | 93 </dependency> |
| 94 <dependency> | |
| 95 <groupId>digilib</groupId> | |
| 96 <artifactId>digilib-servlet3</artifactId> | |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
97 <version>2.1-SNAPSHOT</version> |
| 894 | 98 </dependency> |
| 99 <dependency> | |
| 100 <groupId>digilib</groupId> | |
| 101 <artifactId>digilib-webapp</artifactId> | |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
901
diff
changeset
|
102 <version>2.1-SNAPSHOT</version> |
| 890 | 103 </dependency> |
| 104 </dependencies> | |
| 105 </dependencyManagement> | |
| 884 | 106 <properties> |
| 107 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 108 </properties> | |
| 109 | |
| 890 | 110 <inceptionYear>2001</inceptionYear> |
| 111 <developers> | |
| 112 <developer> | |
| 113 <id>robcast</id> | |
| 114 <name>Robert Casties</name> | |
| 115 <email>robcast@berlios.de</email> | |
| 116 <organization>Max Planck Institute for the History of Science</organization> | |
| 117 <organizationUrl>http://www.mpiwg-berlin.mpg.de</organizationUrl> | |
| 118 <roles> | |
| 119 </roles> | |
| 120 </developer> | |
| 121 <developer> | |
| 122 <id>hertzhaft</id> | |
| 123 <name>Martin Raspe</name> | |
| 124 <email>hertzhaft@berlios.de</email> | |
| 125 <organization>Bibliotheca Hertziana</organization> | |
| 126 <organizationUrl>http://www.biblhertz.it</organizationUrl> | |
| 127 </developer> | |
| 128 </developers> | |
| 129 <scm> | |
| 891 | 130 <connection>scm:hg:http://hg.berlios.de/repos/digilib</connection> |
| 131 <developerConnection>scm:hg:https://hg.berlios.de/repos/digilib</developerConnection> | |
| 890 | 132 <url>http://hg.berlios.de/repos/digilib</url> |
| 133 </scm> | |
| 884 | 134 <dependencies> |
| 135 </dependencies> | |
| 136 <modules> | |
| 954 | 137 <module>common</module> |
| 138 <module>common-jai</module> | |
| 139 <module>common-imagej</module> | |
|
969
6e7a87da622f
bio-formats codec now works sometimes (only mo=q0 and only mo=jpg).
robcast
parents:
954
diff
changeset
|
140 <module>common-bioformats</module> |
| 894 | 141 <module>servlet2</module> |
| 142 <module>servlet3</module> | |
| 143 <module>pdf</module> | |
| 896 | 144 <module>text</module> |
| 954 | 145 <module>webapp</module> |
| 884 | 146 </modules> |
| 147 </project> |
