Mercurial > hg > digilib
annotate common/pom.xml @ 1406:d98f760277b4 new_scaling
update jai-imageio dependency.
| author | robcast |
|---|---|
| date | Mon, 19 Oct 2015 20:16:20 +0200 |
| parents | 4b4973a9f34a |
| children | 7247c046d9dc |
| rev | line source |
|---|---|
| 884 | 1 <?xml version="1.0"?> |
| 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" | |
| 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| 4 <modelVersion>4.0.0</modelVersion> | |
| 5 <parent> | |
| 6 <artifactId>digilib</artifactId> | |
| 7 <groupId>digilib</groupId> | |
| 1233 | 8 <version>2.3-SNAPSHOT</version> |
| 884 | 9 </parent> |
| 894 | 10 <artifactId>digilib-common</artifactId> |
| 11 <name>digilib-common</name> | |
| 12 <description>The Digital Image Library - common library</description> | |
|
1279
828b6c8b1b19
changed links in documentation (and poms) to new sourceforge site.
robcast
parents:
1233
diff
changeset
|
13 <url>http://digilib.sourceforge.net</url> |
| 884 | 14 <packaging>jar</packaging> |
|
1170
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
15 <build> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
16 <pluginManagement> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
17 <plugins> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
18 <plugin> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
19 <groupId>org.apache.maven.plugins</groupId> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
20 <artifactId>maven-compiler-plugin</artifactId> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
21 <configuration> |
| 1401 | 22 <source>1.7</source> |
| 23 <target>1.7</target> | |
|
1170
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
24 </configuration> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
25 </plugin> |
|
1194
4d874398315d
add javadoc plugin config. change default profile to servlet3.
robcast
parents:
1179
diff
changeset
|
26 </plugins> |
|
1170
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
27 </pluginManagement> |
|
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
1169
diff
changeset
|
28 </build> |
| 884 | 29 |
| 30 <dependencies> | |
| 1406 | 31 <dependency> |
| 32 <groupId>com.github.jai-imageio</groupId> | |
| 33 <artifactId>jai-imageio-core</artifactId> | |
| 34 <version>1.3.0</version> | |
| 35 </dependency> | |
| 36 <!-- <dependency> | |
| 37 <groupId>com.github.jai-imageio</groupId> | |
| 38 <artifactId>jai-imageio-jpeg2000</artifactId> | |
| 39 <version>1.3.0</version> | |
| 40 </dependency> --> | |
| 885 | 41 <dependency> |
| 42 <groupId>org.devlib.schmidt</groupId> | |
| 43 <artifactId>imageinfo</artifactId> | |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
894
diff
changeset
|
44 <version>1.9</version> |
| 885 | 45 <type>jar</type> |
| 46 <scope>compile</scope> | |
| 47 </dependency> | |
| 48 <dependency> | |
| 49 <groupId>log4j</groupId> | |
| 50 <artifactId>log4j</artifactId> | |
| 51 <type>jar</type> | |
| 52 <scope>compile</scope> | |
| 53 </dependency> | |
| 884 | 54 </dependencies> |
| 55 </project> |
