87ca193ade
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>
17 lines
397 B
Bash
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
|