Skip to content

Commit

Permalink
Adding "alpha" to the created jar file's name.
Browse files Browse the repository at this point in the history
  • Loading branch information
idooley committed Dec 29, 2011
1 parent 880da0c commit 4e87e0e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ An executor of Runnable Java objects. Each task is only executed after all tasks
Requirements
------------

This library requires some external libraries:
This library requires some external libraries that are distributed in the "lib" directory of the repository.

* [guava](http://code.google.com/p/guava-libraries/) -- Currently used for some collections support.
* [junit](http://www.junit.org/) -- JUnit for testing
* [guava](http://code.google.com/p/guava-libraries/) -- Currently used for some "google collections" support, namely for its MultiMap implementation.
* [junit](http://www.junit.org/) -- JUnit, only required for running unit tests


Contributing
Expand All @@ -22,5 +22,11 @@ I'd love to incorporate changes from other contributors into this project.
2. Create a branch
3. Commit your changes
4. Push to the branch
5. Create an [Issue][1] with a link to your branch
6. Enjoy a refreshing Mountain Dew Livewire and wait
5. Create an issue with a link to your branch
6. Enjoy a refreshing MountainDew Livewire and wait


Bug reports
-----------

If you encounter any bugs or unexpected behaviors that you would prefer not to fix on your own, please open an issue for tracking it.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<mkdir dir="${dist}/lib"/>

<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/lib/DAGExecutor-${DSTAMP}.jar" basedir="${build}"/>
<jar jarfile="${dist}/lib/DAGExecutor-alpha-${DSTAMP}.jar" basedir="${build}"/>
</target>

<target name="clean"
Expand Down

0 comments on commit 4e87e0e

Please sign in to comment.