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.

Anonymous Subversion Access

This project's SVN repository can be checked out through anonymous access with the following command(s).

svn checkout https://svn.wald.intevation.org/svn/atlas-framework/trunk

Developer Subversion Access via SSH

Only project developers can access the SVN tree via this method. SSH must be installed on your client machine. Substitute developername with the proper values. Enter your site password when prompted.

svn checkout svn+ssh://Entwicklername@svn.wald.intevation.org/atlas-framework/trunk

Ohloh

Ohloh is a webpage that features comprehensive metrics and analysis on thousands of open source projects. We are also listed at Ohloh:

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>ascore</artifactId>
			<version>2.0-SNAPSHOT</version>
		</dependency>

		<dependency>
                        <!-- Core AtlasViewer and Geopublisher artifact -->
			<groupId>org.geopublishing.geopublisher</groupId>
			<artifactId>gpcore</artifactId>
			<version>2.0-SNAPSHOT</version>
		</dependency>

		<dependency>
                        <!-- AtlasStyler Stand-Alone Swing GUI artifact -->
			<groupId>org.geopublishing.atlasStyler</groupId>
			<artifactId>asswinggui</artifactId>
			<version>2.0-SNAPSHOT</version>
		</dependency>


		<dependency>
                        <!-- Geopublisher Swing GUI artifact -->
			<groupId>org.geopublishing.geopublisher</groupId>
			<artifactId>gpswinggui</artifactId>
			<version>2.0-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>