Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added intruction how to build cxf with sources

...

Code Block
$ mvn -Pfastinstall

To build CXF and deploy the sources to your local maven repo do the follwing. If you build this way you can start your own cxf project from a pom file and import it with maven eclipse:eclipse then you will have all sources correctly linked into your eclipse project:

Code Block

$ mvn -Pfastinstall source:jar install

Important: For subsequent builds (e.g., after code changes are made), run "mvn clean" first to build from scratch, before using one of the mvn install commands above. (You may also wish to run "svn update" after running mvn clean but before running mvn install.)

...