Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  1. For revision: svn export -r ${revision-number} https://svn.apache.org/repos/asf/ofbiz/trunk ofbiz
  2. For branch: svn export https://svn.apache.org/repos/asf/ofbiz/branches/$\Image Removed{branch-name} ofbiz
  3. $ cd ofbiz
  4. $ ant run-testsunmigrated-wiki-markup
  5. Check results... (search for \ [JUNIT\])
  6. $ cd ..
  7. $ rm -Rf ofbiz/

Steps for a test snapshot type "release":

...

Steps for applying a fix from the trunk to a branch as part of maintenance:

  1. $ svn co https://svn.apache.org/repos/asf/ofbiz/branches/$\Image Removed{branch-name} ofbiz
  2. $ cd ofbiz
  3. $ svn merge -r ${revision-1}:${revison} https://svn.apache.org/repos/asf/ofbiz/trunk
  4. $ svn commit -m "Applied fix from trunk for revision: ${revision}"

...

  1. Example file-base-name: apache-ofbiz-4.0.0, or for framework only: apache-ofbiz-framework-4.0.0
  2. Example branch-name: release4.0
  3. $ svn co https://svn.apache.org/repos/asf/ofbiz ofbizroot
  4. $ cd ofbizroot
  5. $ svn copy branches/${branch-name} tags/${file-base-name}
  6. $ cd ..
  7. $ svn export https://svn.apache.org/repos/asf/ofbiz/tags/$\Image Removed{file-base-name}
  8. $ cd ${file-base-name}
  9. For framework only release: rm -Rf applications/
  10. $ ant run-install
  11. $ cd ..
  12. $ zip -r ${file-base-name}.zip ${file-base-name}/
  13. $ tar -czvf ${file-base-name}.tgz ${file-base-name}/*
  14. $ gpg --output ${file-base-name}.zip.asc --detach-sig --armor ${file-base-name}.zip
  15. $ gpg --output ${file-base-name}.tgz.asc --detach-sig --armor ${file-base-name}.tgz
  16. $ gpg --print-md MD5 ${file-base-name}.zip > ${file-base-name}.zip.md5
  17. $ gpg --print-md MD5 ${file-base-name}.tgz > ${file-base-name}.tgz.md5
  18. $ gpg --print-md SHA512 ${file-base-name}.zip > ${file-base-name}.zip.sha
  19. $ gpg --print-md SHA512 ${file-base-name}.tgz > ${file-base-name}.tgz.sha