Skip to content
MrSnyder edited this page Apr 30, 2013 · 48 revisions

System requirements

  • Compatible JDK (OpenJDK 7, Oracle Java 7 or Oracle Java 6)
  • Apache Maven 3 or better
  • Git

Cloning the deegree3 repository

First, you will need to clone the deegree3 repository. On the command line, change to a suitable directory and enter:

git clone git://github.com/deegree/deegree3.git

Choosing the version to build

Now, change to the deegree3 directory and check out the version that you want to build, e.g.

git checkout deegree-3.2.2

Note: Use git checkout master to get the latest development version. Use ```git tag`` to find out all tags (versions) that can be checked out.

Invoking Maven

Invoke Maven to start the build process:

mvn install

This will build deegree-webservices and all dependent deegree3 modules. You can find the deegree-webservices artifacts in deegree-services/deegree-webservices/target.

Profiles

The are several Maven profiles available to modify the build process, e.g. use

mvn install -Poracle,mssql

to enable support for Oracle Spatial and Microsoft SQL Server.

Here's a full list of available Maven profiles:

  • handbook
  • integration-tests:
  • mssql:
  • oracle:

Clone this wiki locally