freebsd-ports/math/jts/files/testJTS.sh.in
Thierry Thomas 87ca193ade The JTS Topology Suite is an API of 2D spatial predicates and functions. It has
the following design goals:

    * JTS conforms to the Simple Features Specification for SQL published by the
	Open GIS Consortium
    * JTS provides a complete, consistent, robust implementation of fundamental
	2D spatial algorithms
    * JTS is fast enough for production use
    * JTS is written in 100% pure Java(TM)
    * JTS is open source (under the LGPL license)

<http://www.vividsolutions.com/Jts/JTSHome.htm>
2007-05-28 13:15:29 +00:00

17 lines
397 B
Bash

#! /bin/sh
# $FreeBSD$
JLD="%%JAVALIBDIR%%"
JJD="%%JAVAJARDIR%%"
JAVA="%%JAVA%%"
classpath=""
for file in junit.jar xml-apis.jar
do
classpath="$JLD/$file:$classpath"
done
for file in JTS_Test.jar acme.jar jts.jar jtsio.jar jdom-old.jar
do
classpath="$JJD/$file:$classpath"
done
$JAVA -cp "$classpath" com.vividsolutions.jtstest.testrunner.TopologyTestApp -Files testxml/validate testxml/general