Hi I'm trying to add a plugin to GeoServer. I started by following the
sayHello plugin.
However I notice that the location:
<<geoserverInstall>>/webapps/geoserver/WEB-INF/classes/org/vfny/geoserver
only had the following packages:
action config form global
I want to access the class Requests in org.vfny.geoserver.util.*
When maven attempts to compile I get a class not found error.. how can I
access these files properly?
I figure i'm going about this all wrong, can someone provide some
assistance.
--
View this message in context: http://www.nabble.com/org.vfny.geoserver.util-package-missing-from-GeoServer-tp20382904p20382904.html
Sent from the GeoServer - User mailing list archive at Nabble.com.
The jar files containing GeoServer's classes live in WEB-INF/lib/ . You *can* just add WEB-INF/lib/ to your classpath, but for non-trivial projects you'll probably find it less painful in the long run to check out the GeoServer sources and do the full maven/eclipse build described at http://geoserver.org/display/GEOSDOC/1+Setup
Hope this helps,
David Winslow
JayDub wrote:
Hi I'm trying to add a plugin to GeoServer. I started by following the
sayHello plugin. However I notice that the location:
<<geoserverInstall>>/webapps/geoserver/WEB-INF/classes/org/vfny/geoserver only had the following packages:
action config form global
I want to access the class Requests in org.vfny.geoserver.util.*
When maven attempts to compile I get a class not found error.. how can I
access these files properly?
I figure i'm going about this all wrong, can someone provide some
assistance.