Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-devel] uDig 1.3.0 Released

On Thu, 15 Dec 2011 07:53:38 +0100, Jody Garnett <jody.garnett@xxxxxxxxx> wrote:

Cool.

I just fixed those on trunk a couple days ago; so I expect you have the wrong jars:

1. When you switched to 1.3.0 tag; did you also update the net.refractions.udig.libs ?

I'd say so, I've got 8.0-M4 libraries on F3 in eclipse. In lib directory are mostly M4-libraries either: ~/udig/udig-platform/plugins/net.refractions.udig.libs/lib (0) > ls * | grep -Ee 'M4|SNAPSHOT'
eastwood-1.1.1-SNAPSHOT.jar
geodb-0.6-SNAPSHOT.jar
gt-api-8.0-M4.jar
gt-arcgrid-8.0-M4.jar
gt-arcsde-8.0-M4.jar
gt-arcsde-common-8.0-M4.jar
gt-brewer-8.0-M4.jar
gt-charts-8.0-M4.jar
gt-coverage-8.0-M4.jar
gt-cql-8.0-M4.jar
gt-data-8.0-M4.jar
gt-epsg-h2-8.0-M4.jar
gt-geotiff-8.0-M4.jar
gt-graph-8.0-M4.jar
gt-grassraster-8.0-M4.jar
gt-grid-8.0-M4.jar
gt-image-8.0-M4.jar
gt-imageio-ext-gdal-8.0-M4.jar
gt-imagemosaic-8.0-M4.jar
gt-jdbc-8.0-M4.jar
gt-jdbc-db2-8.0-M4.jar
gt-jdbc-h2-8.0-M4.jar
gt-jdbc-mysql-8.0-M4.jar
gt-jdbc-oracle-8.0-M4.jar
gt-jdbc-postgis-8.0-M4.jar
gt-jdbc-spatialite-8.0-M4.jar
gt-jdbc-sqlserver-8.0-M4.jar
gt-jp2k-8.0-M4.jar
gt-main-8.0-M4.jar
gt-metadata-8.0-M4.jar
gt-opengis-8.0-M4.jar
gt-postgis-versioned-8.0-M4.jar
gt-process-8.0-M4.jar
gt-process-feature-8.0-M4.jar
gt-process-geometry-8.0-M4.jar
gt-process-raster-8.0-M4.jar
gt-property-8.0-M4.jar
gt-referencing-8.0-M4.jar
gt-render-8.0-M4.jar
gt-shapefile-8.0-M4.jar
gt-shapefile-renderer-8.0-M4.jar
gt-svg-8.0-M4.jar
gt-swing-8.0-M4.jar
gt-validation-8.0-M4.jar
gt-wfs-8.0-M4.jar
gt-wms-8.0-M4.jar
gt-wps-8.0-M4.jar
gt-xml-8.0-M4.jar
gt-xsd-core-8.0-M4.jar
gt-xsd-fes-8.0-M4.jar
gt-xsd-filter-8.0-M4.jar
gt-xsd-gml2-8.0-M4.jar
gt-xsd-gml3-8.0-M4.jar
gt-xsd-kml-8.0-M4.jar
gt-xsd-ows-8.0-M4.jar
gt-xsd-wfs-8.0-M4.jar
gt-xsd-wps-8.0-M4.jar
jgt-oms3-0.7.3-SNAPSHOT.jar
net.opengis.fes-8.0-M4.jar
net.opengis.ows-8.0-M4.jar
net.opengis.wfs-8.0-M4.jar
net.opengis.wps-8.0-M4.jar
org.w3.xlink-8.0-M4.jar

Besides that, the problem with WMSLayer.java probably have nothing to do with libraries used, the test plugin seems to miss some update:
git diff master:plugins/net.refractions.udig.project/src/net/refractions/udig/project/ILayer.java release/1.3.0:plugins/net.refractions.udig.project/src/net/refractions/udig/project/ILayer.java
<nothing>

git diff -U5 master:plugins/net.refractions.udig.tool.info.tests/src/net/refractions/udig/tool/info/tests/WMSLayer.java release/1.3.0:plugins/net.refractions.udig.tool.info.tests/src/net/refractions/udig/tool/info/tests/WMSLayer.java
--- a/master:plugins/net.refractions.udig.tool.info.tests/src/net/refractions/udig/tool/info/tests/WMSLayer.java +++ b/release/1.3.0:plugins/net.refractions.udig.tool.info.tests/src/net/refractions/udig/tool/info/tests/WMSLayer.java
@@ -10,20 +10,18 @@ import java.util.List;
 import net.refractions.udig.catalog.IGeoResource;
 import net.refractions.udig.project.IBlackboard;
 import net.refractions.udig.project.ILayer;
 import net.refractions.udig.project.ILayerListener;
 import net.refractions.udig.project.IMap;
-import net.refractions.udig.project.IStyleBlackboard;

 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.jface.resource.ImageDescriptor;
 import org.geotools.data.Query;
 import org.geotools.data.ows.Layer;
 import org.geotools.data.wms.WebMapServer;
 import org.geotools.filter.Filter;
 import org.geotools.geometry.jts.ReferencedEnvelope;
-import org.opengis.feature.simple.SimpleFeatureType;
 import org.opengis.feature.type.FeatureType;
 import org.opengis.referencing.crs.CoordinateReferenceSystem;
 import org.opengis.referencing.operation.MathTransform;

 import com.vividsolutions.jts.geom.Envelope;
@@ -136,11 +134,11 @@ public class WMSLayer implements ILayer {;
 			return (E) this.wms;
 		}
 		return null;
 	}

-	public SimpleFeatureType getSchema() {
+	public FeatureType getSchema() {
 		// TODO Auto-generated method stub
 		return null;
 	}

 	public int getStatus() {
@@ -151,11 +149,11 @@ public class WMSLayer implements ILayer {;
 	public String getStatusMessage() {
 		// TODO Auto-generated method stub
 		return null;
 	}

-	public IStyleBlackboard getStyleBlackboard() {
+	public IBlackboard getStyleBlackboard() {
 		// TODO Auto-generated method stub
 		return null;
 	}

 	public int getZorder() {


Ring any bell? I never used git before and find it at the time too difficult to use, so have troubles to track what change is missed here.

-- Slava



Back to the top