...
Create a folder with the content of the attached zip file
Inside that folder run the command command (in Linux)
Code Block |
---|
java -cp "lib/*:PivotalTrackerImporter.jar" com.matrixreq.pivotaltracker.PivotalTrackerImporter pivotalUsername pivotalPassword pivotalProject matrixInstance matrixUsername matrixPassword matrixProject matrixCategory |
the format is slightly different in Windows:
Code Block |
---|
java -cp "lib/*;PivotalTrackerImporter.jar" com.matrixreq.pivotaltracker.PivotalTrackerImporter pivotalUsername pivotalPassword pivotalProject matrixInstance matrixUsername matrixPassword matrixProject matrixCategory |
(one is with a comma in the cp, the other one with a semicolon)
with:
- pivotalUsername : your username within Pivotal
- pivotalPassword : your password for the above account
- pivotalProject : the name of your project in Pivotal
- matrixInstance : the Matrix Requirements instance you are using (like express2.matrixreq.com)
- matrixUsername : your username in Matrix Requirements
- matrixPassword : your password for the above account
- matrixProject : the Matrix Requirements project (like SIMPLE)
- matrixCategory : the category in which you want to include the conversion (like REQ)
...