-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
269 changed files
with
4,372 additions
and
2,519 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,55 +4,86 @@ | |
<groupId>edu.illinois.library.cantaloupe</groupId> | ||
<artifactId>Cantaloupe</artifactId> | ||
<packaging>jar</packaging> | ||
<version>2.0.1</version> | ||
<!-- needs to be kept synchronized with properties/cantaloupe.version --> | ||
<version>2.1</version> | ||
<name>Cantaloupe</name> | ||
<url>https://medusa-project.github.io/cantaloupe/</url> | ||
<inceptionYear>2015</inceptionYear> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<cantaloupe.version>2.0.1</cantaloupe.version> | ||
<amazon-s3.version>1.10.43</amazon-s3.version> | ||
<commons-io.version>2.4</commons-io.version> | ||
<commons-lang3.version>3.4</commons-lang3.version> | ||
<h2.version>1.4.190</h2.version> | ||
<hikari.version>2.4.1</hikari.version> | ||
<im4java.version>1.4.0</im4java.version> | ||
<imageio-ext.version>1.1.12</imageio-ext.version> | ||
<jackson.version>2.6.0</jackson.version> | ||
<jaiext-scale.version>1.0.6</jaiext-scale.version> | ||
<janino.version>2.7.8</janino.version> | ||
<jruby.version>9.0.4.0</jruby.version> | ||
<junit.version>4.12</junit.version> | ||
<logback.version>1.1.3</logback.version> | ||
<mimeutil.version>2.1.3</mimeutil.version> | ||
<restlet.version>2.3.5</restlet.version> | ||
<slf4j.version>1.7.12</slf4j.version> | ||
<cantaloupe.version>2.1</cantaloupe.version> | ||
<restlet.version>2.3.6</restlet.version> | ||
</properties> | ||
|
||
<developers> | ||
<developer> | ||
<id>alexd</id> | ||
<name>Alex Dolski</name> | ||
<email>[email protected]</email> | ||
<organization>University of Illinois at Urbana-Champaign Library</organization> | ||
<organizationUrl>http://www.library.illinois.edu/</organizationUrl> | ||
<roles> | ||
<role>founder</role> | ||
<role>lead</role> | ||
<role>developer</role> | ||
<role>debugger</role> | ||
<role>reviewer</role> | ||
<role>support</role> | ||
<role>maintainer</role> | ||
</roles> | ||
<timezone>-6</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/medusa-project/cantaloupe</connection> | ||
<developerConnection>scm:git:[email protected]:medusa-project/cantaloupe</developerConnection> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/medusa-project/cantaloupe</url> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub Issues</system> | ||
<url>https://github.com/medusa-project/cantaloupe/issues</url> | ||
</issueManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>${logback.version}</version> | ||
<version>1.1.3</version> | ||
</dependency> | ||
<!-- Used by AmazonS3Resolver --> | ||
<dependency> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-s3</artifactId> | ||
<version>${amazon-s3.version}</version> | ||
<version>1.10.43</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.jai-imageio</groupId> | ||
<artifactId>jai-imageio-core</artifactId> | ||
<version>1.3.1</version> | ||
</dependency> | ||
<!-- Used in tests to test for System.exit() --> | ||
<dependency> | ||
<groupId>com.github.stefanbirkner</groupId> | ||
<artifactId>system-rules</artifactId> | ||
<version>1.15.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- Used by JdbcResolverTest and JdbcCacheTest --> | ||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<version>${h2.version}</version> | ||
<version>1.4.190</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- Provides a JDBC connection pool for JdbcResolver and JdbcCache --> | ||
<dependency> | ||
<groupId>com.zaxxer</groupId> | ||
<artifactId>HikariCP</artifactId> | ||
<version>${hikari.version}</version> | ||
<version>2.4.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-configuration</groupId> | ||
|
@@ -62,12 +93,12 @@ | |
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>${commons-io.version}</version> | ||
<version>2.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>eu.medsea.mimeutil</groupId> | ||
<artifactId>mime-util</artifactId> | ||
<version>${mimeutil.version}</version> | ||
<version>2.1.3</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
|
@@ -79,49 +110,40 @@ | |
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<!-- Provides JAI for JaiProcessor --> | ||
<dependency> | ||
<groupId>it.geosolutions.imageio-ext</groupId> | ||
<artifactId>imageio-ext-imagereadmt</artifactId> | ||
<version>${imageio-ext.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>it.geosolutions.imageio-ext</groupId> | ||
<artifactId>imageio-ext-tiff</artifactId> | ||
<version>${imageio-ext.version}</version> | ||
</dependency> | ||
<dependency> <!-- https://github.com/geosolutions-it/jai-ext --> | ||
<groupId>it.geosolutions.jaiext.scale</groupId> | ||
<artifactId>jt-scale</artifactId> | ||
<version>${jaiext-scale.version}</version> | ||
<groupId>javax.media.jai</groupId> | ||
<artifactId>com.springsource.javax.media.jai.core</artifactId> | ||
<version>1.1.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>${commons-lang3.version}</version> | ||
<version>3.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${junit.version}</version> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- Supports <if> expressions in logback.xml --> | ||
<dependency> | ||
<groupId>org.codehaus.janino</groupId> | ||
<artifactId>janino</artifactId> | ||
<version>${janino.version}</version> | ||
<version>2.7.8</version> | ||
</dependency> | ||
<!-- Used by GraphicsMagickProcessor and ImageMagickProcessor --> | ||
<dependency> | ||
<groupId>org.im4java</groupId> | ||
<artifactId>im4java</artifactId> | ||
<version>${im4java.version}</version> | ||
<version>1.4.0</version> | ||
</dependency> | ||
<!-- Used by FilesystemResolver to execute lookup scripts --> | ||
<dependency> | ||
<groupId>org.jruby</groupId> | ||
<artifactId>jruby</artifactId> | ||
<version>${jruby.version}</version> | ||
<version>9.0.5.0</version> | ||
<type>pom</type> | ||
</dependency> | ||
<dependency> | ||
|
@@ -161,21 +183,21 @@ | |
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
<version>1.7.12</version> | ||
</dependency> | ||
<!-- intercepts jcl log messages from Commons Configuration etc. --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>jcl-over-slf4j</artifactId> | ||
<version>${slf4j.version}</version> | ||
<version>1.7.12</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>geosolutions</id> | ||
<name>GeoSolutions Repository</name> | ||
<url>http://maven.geo-solutions.it/</url> | ||
<id>com.springsource.repository.bundles.external</id> | ||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> | ||
<url>http://repository.springsource.com/maven/bundles/external</url> | ||
</repository> | ||
<repository> | ||
<id>maven-restlet</id> | ||
|
Oops, something went wrong.