Never seen this module before. Anyways its breaking the build because it
has a test dependency on shapefile. Works fine in eclipse but not in
maven. You need a dependency like this:

<dependency>
  <artifactId>gt2-shapefile</artifactId>
   ...
  <classifier>tests</classifier>
  <scope>test</scope>
</dependency>

However... the shapefile plugin also needs to be configured to install
its test artifact on a mvn install so I have updated its pom as follows:

 <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>


Anyways, even when i do this the test case fails in maven. I am throwing
repository in pending for the moment until the maintainer (jody) fixes
it. IT is all the catalog stuff taken out of main so I dont think anyone
is going to miss it.

-Justin

-- 
Justin Deoliveira
The Open Planning Project
http://topp.openplans.org

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Geotools-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to