XenoAmess opened a new pull request #21:
URL: https://github.com/apache/commons-jexl/pull/21
In short, we will fix travis-ci script by deleting jdk6,7,12,13,ea to make
travis-ci can build.
I will explain why we shall do this.
1. for jdk 12,13,ea:
you use
```
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
```
which is not supported in jdk 12,13,ea.
that means, no matter how hard you try you can never pass the build.
so delete them.
2. for jdk 6,7
you use org.codehaus.mojo:animal-sniffer-maven-plugin:1.18 in your build
progress, and org.codehaus.mojo:animal-sniffer-maven-plugin:1.18 use 52.0 for
class version (jdk8), means jdk 6 and 7 cannot run its classes.
that means, no matter how hard you try you can never pass the build.
so delete them.
I also added
```
cache:
directories:
- $HOME/.m2
```
, in hope of making the build faster.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]