...
Code Block |
---|
wget --user-agent="testuser" http://dist.wso2.org/products/enterprise-service-bus/4.67.0/wso2esb-4.67.0.zip
|
Building from source
...
You can download the complete WSO2 Carbon platform, which is recommended if you intend to modify the source. You can check out the complete source anonymously from SVN with the following commands (note that this version of the ESB is based on Carbon 4.0.5). The Carbon project comes in three sub projects: Orbit, Kernel, and Platform. Download and build them in that particular order.
O
rbit: Code Block |
---|
$ svn checkout https://svn.wso2.org/repos/wso2/carbon/orbit/tags/4.0.5 wso2carbon |
Kernel:
Code Block |
---|
$ svn checkout https://svn.wso2.org/repos/wso2/carbon/kernel/tags/4.0.5 wso2carbon |
Platform:
$ svn checkout https://svn.wso2.org/repos/wso2/carbon/platform/tags/4.0.5 wso2carbon
Following are the commands you can run. If you only want to build the ESB, use the -Dproduct=esb
option as shown. If you want to build the entire Carbon core project, omit the -Dproduct=esb
option.
...