tree: 836167681e0db40c3e63369139ff346871b00c70 [path history] [tgz]
  1. config/
  2. data/
  3. documents/
  4. entitydef/
  5. groovyScripts/
  6. minilang/
  7. servicedef/
  8. src/
  9. template/
  10. testdef/
  11. webapp/
  12. widget/
  13. ofbiz-component.xml
  14. ofbizScrumDataModel.odp
  15. README.md
scrum/README.md

Scrum component

This OFBiz component enables organisations to manage agile project, product backlogs and sprints.

How to install the revision of task function.

Deprecated this needs to be adapted to Git

Server requirements

  1. subversion

Installation (On server)

  1. Install subversion

  2. Hook script setting 2.1 post-commit file is hook script file that will work when users commit source code to subversion repository. Copy post-commit file from “scrum/data/hookscripts/post-commit” to hooks folder of repository and then edit file following : Example : python /usr/share/subversion/hook-scripts/commit.py “$REPOS” “$REV” 2.2 commit.py file is python file which will send revision information to Scrum web service. Copy commit.py from “scrum/data/hookscripts/commit.py” to “/usr/share/subversion/hook-scripts/” and then edit file following : --------------------------------------------------------------------------------- CONFIG_PATH = "" // the path of the revision.properties should begin from home directory. Example : CONFIG_PATH = “/home/ofbiz/ofbiz/plugins/scrum/config/revision.properties” --------------------------------------------------------------------------------

  3. Configure file setting : The original configure file is in scrum component (/scrum/config/revision.properties) you can put it anywhere that you wish but should be set the path of the file in commit.py file (“CONFIG_PATH=”). Example: -------------------------------------------------------------------------------- revision.url =www.example.com/svn/ ofbiz.webservice.url =http://www.example.com/webtools/control/SOAPService host.name =www.example.com host.port =80

         #-- subversion admin and password
         svn.user=demoUser
         svn.password=demoPassword
       --------------------------------------------------------------------------------
    
  4. Change the location path of the updateScrumRevision service in .../scrum/servicedef/services.xml file. Example: -------------------------------------------------------------------------------- --------------------------------------------------------------------------------

  5. Restart the server.