javacc / javaccPlugin

A JavaCC plugin for Gradle
MIT License
33 stars 16 forks source link

Removed dependency on guava #48

Closed mdbuck closed 1 year ago

mdbuck commented 4 years ago

I am having trouble using both the JavaCC and Google's Jib plugins as Jib requires a much newer version of Guava than Javacc uses. It looks like JavaCC's usage of Guava is pretty minimal so I just re-implemented Guava's Callables.returning(T) and removed the Gruava dependency.

Michael

mdbuck commented 4 years ago

I am not familiar with Travic CI but others are having the same problem with their builds. Error installing ‘oraclejdk8’: “Expected feature release number in range of 9 to 14, but got: 8”

zbynek commented 1 year ago

This got conflicted and since in Java 8 we can replace returning by a single-line lambda, I created an independent PR (#61 ) and I'm closing this one (feel free to reopen if you disagree).