Hi list,
now all compile on my side even if many tests fail.
What I have done is:
- compiled the geoapi trunk (2.1-SNAPSHOT) with Maven2 and Java1.5 (it
works, but at the end I have used Cory jars for gt2-fm) [OK]
-
imported projects gt2-api, coverage, main and referencing in eclipse
with Java1.4 + JAI using geoapi 2.1-SNAPSHOT + nogenerics jars [OK]
- corrected two tests on org.geotools.filter.function package:
FunctionTestSupport.java (117) :
-----------------------------------------------
AssociationType association = factory.createAssociationType(
Types.typeName("memberTypeAssociation"), FeatureType.class, false,
false,
Collections.EMPTY_SET, null, null
);
with:
AttributeType t4 =
factory.createAttributeType(Types.typeName("association"),
FeatureType.class, false, false, Collections.EMPTY_SET, null, null);
AssociationType association = factory.createAssociationType(
Types.typeName("memberTypeAssociation"), t4, false, false,
Collections.EMPTY_SET, null, null
);
QuantileFunctionTest.java (154):
-----------------------------------------------
the same as before
--
---------------------------------------------------------
Alessio Fabiani
Software Engineer
http://afabiani.wordpress.com
---------------------------------------------------------
- [Geotools-devel] GeoAPI and GT2-FM Alessio Fabiani
- Re: [Geotools-devel] GeoAPI and GT2-FM Justin Deoliveira
- Re: [Geotools-devel] GeoAPI and GT2-FM Alessio Fabiani
- Re: [Geotools-devel] GeoAPI and GT2-FM Martin Desruisseaux