Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Get the revision or latest version of OFBiz you will be starting from for this sample its r482800:
    Code Block
    svn export http://svn.apache.org/repos/asf/ofbiz/trunk ./tmpdir/ofbiz-r482800
    

  • Import it as the ofbiz project in the repository
    Code Block
    svn import -m "Import OFBiz r482800" ./tmpdir/ofbiz-r482800 svn://localhost/ofbiz/current
    
    Tip: the .svnversion/conf file should be equal to the standard ofbiz file except for the svn:keywords properties that should be completely removed to avoid merging problems later on

  • Make a tag for ofbiz r482800
    Code Block
    svn copy -m "Tag r482800 vendor drop" svn://localhost/ofbiz/current svn://localhost/ofbiz/ofbiz-r482800
    

  • Create the "ofbizcustom" project (initially it's a copy of the OFBiz r482800 tag)
    Code Block
    svn mkdir -m "" svn://localhost/customofbiz
    svn copy -m "OfbizCustom is initially built over the ofbiz-r482800 tag" svn://localhost/ofbiz/ofbiz-r482800 svn://localhost/customofbiz/trunk
    

...