Developer resources
Sourcecode and bug trackers
For interested developers there is an English-speaking developers portal at wald.intevation.de. There you can access the source-code via SVN or report bugs and feature-request.
Ohloh
Ohloh is a webpage that features comprehensive metrics and analysis on thousands of open source projects. We are also listed at Ohloh:
Integration Server
The Hudson continuous integration server running at wikisquare.de prodives interested developers information about daily builds, test-coverage etc.
JavaDoc
The JavaDoc HTML pages are automatically generated from annotations within the Java sourcecode. Its purpose is to provide a browsable reference that describes the API for programmers that are interested in extending or reusing the code. It's updated with every development release.
Developers-Mailinglist
For interested developers and more in-depth discussions on Geopublisher technology, you are welcome to join the developers mailinglist. Use this link to join the English speaking mailinglist for Geopublisher und AtlasStyler developers.
Maven
Since version 1.5 Geopublishing software is available via maven. Always respect the licenses when using 3rd-party code in your project! The artifactIds and groupIds are:
<dependency>
<!-- Core AtlasStyler artifact -->
<groupId>org.geopublishing.atlasStyler</groupId>
<artifactId>aspcore</artifactId>
<version>1.5-SNAPSHOT</version>
</dependency>
<dependency>
<!-- Core AtlasViewer and Geopublisher artifact -->
<groupId>org.geopublishing.geopublisher</groupId>
<artifactId>gpcore</artifactId>
<version>1.5-SNAPSHOT</version>
</dependency>
<dependency>
<!-- AtlasStyler Stand-Alone Swing GUI artifact -->
<groupId>org.geopublishing.atlasStyler</groupId>
<artifactId>asswinggui</artifactId>
<version>1.5-SNAPSHOT</version>
</dependency>
<dependency>
<!-- Geopublisher Swing GUI artifact -->
<groupId>org.geopublishing.geopublisher</groupId>
<artifactId>gpswinggui</artifactId>
<version>1.5-SNAPSHOT</version>
</dependency>All geopublishing artifacts are available from the wikisquare.de maven repository:
<repository> <!-- Main releases for geopublishing.org powered by wikisquare.de--> <snapshots> <enabled>false</enabled> </snapshots> <name>libs-releases</name> <url>http://www.wikisquare.de:8080/artifactory/libs-releases</url> </repository> <repository> <!-- Snapshot releases for geopublishing.org powered by wikisquare.de--> <snapshots /> <name>libs-snapshots</name> <url>http://www.wikisquare.de:8080/artifactory/libs-snapshots</url> </repository>
















