-
Notifications
You must be signed in to change notification settings - Fork 266
Developer's Guide
-
Download and install Java JDK 1.6. While it is possible to compile ParSeq with Java 1.7, we are currently performing release builds with 1.6.
-
Install Apache Ant. We currently use version 1.8.2.
-
Clone the ParSeq repository:
git clone git://github.com/linkedin/parseq.git
-
Use
ant test
to verify that the source code passes all unit tests. If you do not have node.js installed, you can skip the javascript tests with:ant -Dno.test.tracevis=1 test
-
Use
ant dist
to build the ParSeq library into the dist directory.
All contributions must be made under the Apache License, Version 2.0.
We're following a model that follows a subset of the github flow:
-
Master should always be left in a state where a new release can be made.
-
Create a descriptively named branch off of master.
-
Work on your feature on this branch, periodically pushing to github.
-
Verify that all tests pass.
-
Open a pull request for your branch to get it reviewed.
-
Once you get a 👍,
, or the like from another committer, change to master, use
git merge --ff-only <feature-branch>
and then push your changes to the github repo. -
Cleanup the github repo by removing the branch using
git push :<feature-branch>
Note: if you intend to make large changes, please let us know by filing an issue.
-
Fork the ParSeq repository on github.
-
Make changes in your fork.
-
Verify all tests pass.
-
Initiate a pull request.
-
One of the ParSeq committers will review your request and either provide feedback or pull the commit into the master repository.