Skip to content

Commit

Permalink
Fix pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Dolski committed Sep 24, 2015
1 parent bfe3e7c commit a95b92f
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<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/maven-v4_0_0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>edu.illinois.library.cantaloupe</groupId>
<artifactId>Cantaloupe</artifactId>
<packaging>jar</packaging>
<version>1.0-beta1</version>
<version>${cantaloupe.version}</version>
<name>Cantaloupe</name>
<url>http://maven.apache.org</url>
<dependencies>
Expand All @@ -29,6 +29,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>eu.medsea.mimeutil</groupId>
<artifactId>mime-util</artifactId>
Expand All @@ -44,7 +49,7 @@
<groupId>it.geosolutions.imageio-ext</groupId>
<artifactId>imageio-ext-imagereadmt</artifactId>
<version>${imageio-ext.version}</version>
</dependency>
</dependency><!--
<dependency>
<groupId>it.geosolutions.imageio-ext</groupId>
<artifactId>imageio-ext-kakadu</artifactId>
Expand All @@ -54,7 +59,7 @@
<groupId>it.geosolutions.imageio-ext</groupId>
<artifactId>imageio-ext-kakadujni</artifactId>
<version>5.2.6</version>
</dependency>
</dependency>-->
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-jp2k</artifactId>
Expand Down Expand Up @@ -114,6 +119,11 @@
<name>GeoSolutions Repository</name>
<url>http://maven.geo-solutions.it/</url>
</repository>
<repository>
<id>geotools</id>
<name>GeoTools</name>
<url>http://download.osgeo.org/webdav/geotools/</url>
</repository>
<repository>
<id>maven-restlet</id>
<name>Restlet repository</name>
Expand All @@ -122,6 +132,7 @@
</repositories>

<properties>
<cantaloupe.version>1.0-beta2</cantaloupe.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<imageio-ext.version>1.1.12</imageio-ext.version>
Expand Down Expand Up @@ -169,11 +180,11 @@
http://stackoverflow.com/questions/7051603/jai-vendorname-null -->
<manifestEntries>
<Specification-Title>Cantaloupe</Specification-Title>
<Specification-Version>Cantaloupe</Specification-Version>
<Specification-Version>${cantaloupe.version}</Specification-Version>
<Specification-Vendor>Cantaloupe</Specification-Vendor>
<Implementation-Title>Cantaloupe</Implementation-Title>
<Implementation-Version>Cantaloupe</Implementation-Version>
<Implementation-Vendor>Cantaloup</Implementation-Vendor>
<Implementation-Version>${cantaloupe.version}</Implementation-Version>
<Implementation-Vendor>Cantaloupe</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
Expand Down

0 comments on commit a95b92f

Please sign in to comment.