Apache Struts 2 Documentation > Home > Guides > Contributors Guide > Building the Framework from Source |
Most developers will never need to build the framework from source. The distribution package contains everything a developer needs to get started and become productive with the framework. For more on how to go to work with the distributed binaries right away, see Ready, Set, Go!. However, there are situations when someone will want to build the framework from scratch. You may want to try out new tweaks and patches, or you might want to try writing your own tweak or patch.
If you just want to use the latest development build, perhaps because a patch you need has been applied, you can also download a nightly build. |
The source code for the framework is available as a distribution you can download directly and from the source code repository.
The distributions of the framework contain all sources, as well as all needed libraries for building JARs and running. Distributions can be downloaded from the Apache Struts project.
Use Subversion to checkout the source code.
> cd C:\projects\Apache\
> svn co https://svn.apache.org/repos/asf/struts/current/ struts
The default build environment is Maven. To get started with Maven
Change to your framework home directory (e.g. C:\projects\Apache\struts\struts2) and run
> cd C:\projects\Apache\struts\struts2\ > mvn clean install -Pall
That will take care of the basic maven build. There is a bunch more that you can do. Checkout out Building with Maven for more information.
NOTE: The above assumes that the Struts build depends on a version of XWork which is available from a Maven repository. If this is not the case (e.g. when Struts depends on an unreleased XWork snapshot), you will need to build XWork yourself, and install it into your local Maven repository, before attempting to build Struts itself. See Building with Maven for instructions on building XWork.