Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Before you can build CXF, you'll need to first check it out from the Source Repository. Then you'll need to install Maven 2.0.x.

Building CXF

Before building CXF, you need to setup an environment variable to give maven more memory:

Code Block

set MAVEN_OPTS=-Xmx512M

On 64bit platforms (64bit Linux and Solaris are known to require this), you also need to increase the PermGen space:

Code Block

export MAVEN_OPTS="-XX:MaxPermSize=128m -Xmx512M"

To build CXF simply execute:

...