Hide Forgot
Complexity: Low project_key: SOA Need to provide source bundle for SOA-P (easy). Need to check that it builds and what the build requirements are (on Unix/Linux and on Windows).
Software requirements (command-line tools) for the build are: Java 5 SE SDK ant 1.7.0 zip and unzip CVS Maven (mvn) Subversion (svn)
The source doesn't build on Windows, as (at least) the mvn exec fails. A separate issue will be opened to address this.
Building the source zip: Create a soa-<rel> directory (e.g. soa-4.2.0) and check out the tagged SOA source into it Run: (cd build-tools && ant materialize.projects) to fetch the dependencies in soa-work. Add instructions and script/batch file to make it easy to build. The instructions, script and batch file are being worked on.
SOA-463 will fix the Windows build issue.
Link: Added: This issue is related to SOA-463
The instructions, script and batch file are checked in under the src-tools top-level directory.
Source zip created (1.5GB).
1.5GB is too large. Will remove all the .svn directories. That should halve the size: mkdir soa-4.2.0 && \ (cd soa-4.2.0 && \ svn co https://svn.corp.jboss.com/repos/soa/trunk/src-tools && \ mv src-tools/* . && \ rm -rf src-tools && \ svn co https://svn.corp.jboss.com/repos/soa/tags/4.2.0GA/build-tools && \ find build-tools -name .svn -exec rm -fr {} \; -prune && \ (cd build-tools && ant materialize.projects) && \ find soa-work -name .svn -exec rm -fr {} \; -prune ) && \ find soa-4.2.0 | zip soa-4.2.0.zip -@ && \ md5sum soa-4.2.0.zip > soa-4.2.0.zip.md5
Removed the .svn and CVS directories using: mkdir soa-4.2.0 && \ (cd soa-4.2.0 && \ svn co https://svn.corp.jboss.com/repos/soa/trunk/src-tools && \ mv src-tools/* . && \ rm -rf src-tools && \ svn co https://svn.corp.jboss.com/repos/soa/tags/4.2.0GA/build-tools && \ find build-tools -name .svn -exec rm -fr {} \; -prune && \ (cd build-tools && ant configure && ant materialize.projects) && \ find soa-work \( -name .svn -o -name CVS \) -exec rm -fr {} \; -prune ) && \ rm -f soa-4.2.0.zip 2>&1 && \ find soa-4.2.0 | zip soa-4.2.0.zip -@ && \ md5sum soa-4.2.0.zip > soa-4.2.0.zip.md5 Also removed was a (no longer used) old version of the EAP zip. The final source size is: -rw-r--r-- 1 jdc staff 581849907 2008-03-12 13:54 soa-4.2.0.zip Uploaded to SVN and Chris O'Brien uploaded that to: ftp://ftp.redhat.com/pub/redhat/soa-p/4.2.0/en/source/soa-4.2.0.zip