|
From: <svn...@os...> - 2012-01-22 19:51:39
|
Author: simonegiannecchini
Date: 2012-01-22 11:51:32 -0800 (Sun, 22 Jan 2012)
New Revision: 38515
Modified:
branches/2.7.x/modules/plugin/imagemosaic/pom.xml
branches/2.7.x/modules/plugin/imagemosaic/src/main/java/org/geotools/gce/imagemosaic/Utils.java
branches/2.7.x/pom.xml
Log:
GEOT-2867
Modified: branches/2.7.x/modules/plugin/imagemosaic/pom.xml
===================================================================
--- branches/2.7.x/modules/plugin/imagemosaic/pom.xml 2012-01-22 19:44:30 UTC (rev 38514)
+++ branches/2.7.x/modules/plugin/imagemosaic/pom.xml 2012-01-22 19:51:32 UTC (rev 38515)
@@ -168,7 +168,6 @@
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
- <version>1.6.2</version>
</dependency>
<!-- Test dependencies -->
Modified: branches/2.7.x/modules/plugin/imagemosaic/src/main/java/org/geotools/gce/imagemosaic/Utils.java
===================================================================
--- branches/2.7.x/modules/plugin/imagemosaic/src/main/java/org/geotools/gce/imagemosaic/Utils.java 2012-01-22 19:44:30 UTC (rev 38514)
+++ branches/2.7.x/modules/plugin/imagemosaic/src/main/java/org/geotools/gce/imagemosaic/Utils.java 2012-01-22 19:51:32 UTC (rev 38515)
@@ -869,7 +869,6 @@
builder.append("isFile").append(file.isFile()).append("\n");
builder.append("canRead:").append(file.canRead()).append("\n");
builder.append("canWrite").append(file.canWrite()).append("\n");
- builder.append("canExecute:").append(file.canExecute()).append("\n");
builder.append("isAbsolute:").append(file.isAbsolute()).append("\n");
builder.append("lastModified:").append(file.lastModified()).append("\n");
builder.append("length:").append(file.length());
Modified: branches/2.7.x/pom.xml
===================================================================
--- branches/2.7.x/pom.xml 2012-01-22 19:44:30 UTC (rev 38514)
+++ branches/2.7.x/pom.xml 2012-01-22 19:51:32 UTC (rev 38515)
@@ -902,6 +902,12 @@
<version>2.6.0</version>
</dependency>
+ <!-- Other random non test dependencies -->
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ <version>1.6.2</version>
+ </dependency>
<!-- Tests or legacy -->
<dependency>
<groupId>junit</groupId>
|