rzwitserloot / lombok.ast

Robust parser + AST for the java language.
http://projectlombok.org/
MIT License
71 stars 22 forks source link

"ant eclipse" does not work #3

Closed tinne closed 12 years ago

tinne commented 12 years ago

... due to the fact, that the ant job tries to download the zipped form of the java language specification, which appears to have disappeared from Oracle's pages.

For the time being, it seems to be a valid fix to replace http://java.sun.com/docs/books/jls/third_edition/download/langspec-3.0.zip with http://www.inf.uos.de/software/binf/jdk-papers/langspec-3.0.zip in build.xml line 219.

askoning commented 12 years ago

Cool, thank you. Hopefully we can find a more permanent solution. On May 1, 2012 10:06 PM, "Karsten Tinnefeld" < reply@reply.github.com> wrote:

... due to the fact, that the ant job tries to download the zipped form of the java language specification, which appears to have disappeared from Oracle's pages.

For the time being, this seems to be a valid fix:

index 9d5e506..9d7d10f 100644 --- a/build.xml +++ b/build.xml @@ -219,7 +219,7 @@

   <target name="fetchJLS" unless="jls-available">
           <mkdir dir="doc/jls" />

Reply to this email directly or view it on GitHub: https://github.com/rzwitserloot/lombok.ast/issues/3

rzwitserloot commented 12 years ago

Pushed this change to master. Thanks for noticing and chasing down a working URL!