tree: f65c3a97a4eda1ce7cc014860084b9b3b0bb31d7 [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.

more information

For more information about this component visit the product page in the OFBiz WIKI, which can be found at https://cwiki.apache.org/confluence/display/OFBIZ/Scrum+Management

issues

JIRA issues related to this component can be found at https://issues.apache.org/jira/browse/OFBIZ/component/12316900

commits

Committed revisions can be viewed at http://svn.apache.org/viewvc/ofbiz/trunk/plugins/scrum/

How to install the revision of task function.

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.