oraclejdk7 is EoLed as far as I'm concerned

This commit is contained in:
R. Tyler Croy 2015-09-18 15:03:47 -07:00
parent 9a42acdf33
commit 774cd380b2
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
3 changed files with 13 additions and 2 deletions

View File

@ -5,7 +5,6 @@ install:
script:
- "./gradlew -S -i"
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
cache:

View File

@ -91,7 +91,7 @@ bintray {
* the JDK7 build. This is to prevent multiple attempts by the build matrix
* to publish the artifacts
*/
dryRun = !((System.env.TRAVIS_TAG as boolean) && (System.env.TRAVIS_JDK_VERSION == 'oraclejdk7'))
dryRun = !((System.env.TRAVIS_TAG as boolean) && (System.env.TRAVIS_JDK_VERSION == 'openjdk7'))
pkg {
userOrg = 'jruby-gradle'

View File

@ -0,0 +1,12 @@
package com.github.jrubygradle.jem;
import java.io.File;
/**
* Interface defining the appropriate callback even to hook into the
* {@code GemInstaller}
*/
public interface GemInstallEvent {
public void onSuccess(Gem gem, File installationDir);
public void onFailure(Gem gem, File installationDir);
}