Hello all,
I've tried to walk through GeoServer Developer's Guide a few times now
and keep getting stuck at the same point. I'm on the Maven QuickStart
tutorial and I get build errors in two places. The first happens when
I'm installing GeoServer modules using the command "mvn install". I
get the following build error about wcs module:
[INFO] [compiler:compile]
[INFO] Compiling 53 source files to C:\geoserver_dev\src\wcs1_1\target\classes
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure
C:\geoserver_dev\src\wcs1_1\src\main\java\org\geoserver\wcs\response\WCSCapsTransformer.java:[403,22
] cannot find symbol
symbol : method getNamespace()
location: interface net.opengis.wcs11.GetCapabilitiesType
C:\geoserver_dev\src\wcs1_1\src\main\java\org\geoserver\wcs\response\WCSCapsTransformer.java:[404,42
] cannot find symbol
symbol : method getNamespace()
location: interface net.opengis.wcs11.GetCapabilitiesType
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6 minutes 10 seconds
[INFO] Finished at: Sun Feb 15 15:56:03 CST 2009
[INFO] Final Memory: 34M/63M
[INFO] ------------------------------------------------------------------------
The second build error happens when I try to run geoserver using the
command "mvn -o jetty:run". This tells me that certain .jar files are
missing. I've gone ahead and downloaded and installed two of them from
the listed repositories, but the third
(org.geoserver:gwc:jar:2.0-SNAPSHOT) doesn't exist on any of the
repositories. What should I be doing?
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) org.geoserver:wfs:jar:2.0-SNAPSHOT
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.geoserver
-DartifactId=wfs -Dversion=2.0-SNAPSHOT -Dpac
kaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=org.geoserver -DartifactId=wfs
-Dversion=2.0-SNAPSHOT -Dpacka
ging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) org.geoserver:web:jar:2.0-SNAPSHOT
2) org.geoserver:wfs:jar:2.0-SNAPSHOT
2) org.geoserver:wms:jar:2.0-SNAPSHOT
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.geoserver
-DartifactId=wms -Dversion=2.0-SNAPSHOT -Dpac
kaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=org.geoserver -DartifactId=wms
-Dversion=2.0-SNAPSHOT -Dpacka
ging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) org.geoserver:web:jar:2.0-SNAPSHOT
2) org.geoserver:wms:jar:2.0-SNAPSHOT
3) org.geoserver:gwc:jar:2.0-SNAPSHOT
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.geoserver
-DartifactId=gwc -Dversion=2.0-SNAPSHOT -Dpac
kaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=org.geoserver -DartifactId=gwc
-Dversion=2.0-SNAPSHOT -Dpacka
ging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) org.geoserver:web:jar:2.0-SNAPSHOT
2) org.geoserver:gwc:jar:2.0-SNAPSHOT
----------
3 required artifacts are missing.
for artifact:
org.geoserver:web:jar:2.0-SNAPSHOT
from the specified remote repositories:
geotools (http://maven.geotools.fr/repository/),
refractions (http://lists.refractions.net/m2/),
mortbay (http://www.mortbay.org/maven2/release),
maven-restlet (http://maven.restlet.org),
central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 16 seconds
[INFO] Finished at: Sun Feb 15 16:06:48 CST 2009
[INFO] Final Memory: 18M/33M
[INFO] ------------------------------------------------------------------------
Much help is needed and appreciated.
Thanks
Greg Corradini