diff options
author | Roel Spilker <r.spilker@gmail.com> | 2014-02-25 21:20:45 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2014-02-25 21:20:45 +0100 |
commit | e82a1c052e7d06a64b7b065d38db35e030323f1a (patch) | |
tree | d9deb969b045bff5b6f8220942c8f79c04272be4 /buildScripts | |
parent | 15e7adfa08a3dc86e34008c80b5719e93fb73811 (diff) | |
download | lombok-e82a1c052e7d06a64b7b065d38db35e030323f1a.tar.gz lombok-e82a1c052e7d06a64b7b065d38db35e030323f1a.tar.bz2 lombok-e82a1c052e7d06a64b7b065d38db35e030323f1a.zip |
yet another (much better) attempt at fixing the deadlock issue. Again all the work is in lombok.patcher, this is just updating the deps.
Diffstat (limited to 'buildScripts')
-rw-r--r-- | buildScripts/ivy-repo/org.projectlombok-lombok.patcher-0.9.xml | 14 | ||||
-rw-r--r-- | buildScripts/ivy.xml | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/buildScripts/ivy-repo/org.projectlombok-lombok.patcher-0.9.xml b/buildScripts/ivy-repo/org.projectlombok-lombok.patcher-0.9.xml new file mode 100644 index 00000000..15460eee --- /dev/null +++ b/buildScripts/ivy-repo/org.projectlombok-lombok.patcher-0.9.xml @@ -0,0 +1,14 @@ +<ivy-module version="2.0"> + <info organisation="org.projectlombok" module="lombok.patcher" revision="0.9" publication="20140225211800"> + <license name="MIT License" url="http://www.opensource.org/licenses/mit-license.php" /> + <ivyauthor name="rzwitserloot" url="http://zwitserloot.com/" /> + <ivyauthor name="rspilker" url="http://github.com/rspilker" /> + <description homepage="http://projectlombok.org/" /> + </info> + <configurations> + <conf name="default" /> + </configurations> + <publications> + <artifact conf="default" url="http://projectlombok.org/downloads/lombok.patcher-0.9.jar" /> + </publications> +</ivy-module> diff --git a/buildScripts/ivy.xml b/buildScripts/ivy.xml index c202fae1..48c3661b 100644 --- a/buildScripts/ivy.xml +++ b/buildScripts/ivy.xml @@ -14,7 +14,7 @@ <conf name="javac7" /> </configurations> <dependencies> - <dependency org="org.projectlombok" name="lombok.patcher" rev="0.8" conf="buildBase->default; runtime->default" /> + <dependency org="org.projectlombok" name="lombok.patcher" rev="0.9" conf="buildBase->default; runtime->default" /> <dependency org="zwitserloot.com" name="cmdreader" rev="1.2" conf="buildBase->runtime; runtime" /> <dependency org="junit" name="junit" rev="4.8.2" conf="test->default; contrib->sources" /> |