Skip to content

Commit

Permalink
require java 8 instead of java 7
Browse files Browse the repository at this point in the history
  • Loading branch information
brharrington committed Aug 5, 2015
1 parent c5ead78 commit 8a1d4e8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
language: java
jdk:
- oraclejdk7
- oraclejdk8
sudo: false
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Simple library for instrumenting code to record dimensional time series.

## Requirements

* Java 7 or higher.
* Java 8 or higher.
* Java 7 or higher for spectator 0.27.x or earlier.

## Documentation

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ subprojects {

group = "com.netflix.${githubProjectName}"

sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8

javadoc {
options {
Expand Down
Binary file removed codequality/japi-checker-cli-0.2.0-SNAPSHOT.jar
Binary file not shown.
Binary file added codequality/japi-checker-cli-0.2.1-SNAPSHOT.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion spectator-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ javadoc {
task(checkCompatibility, dependsOn: 'jar', type: JavaExec) {
doFirst {
main = 'com.googlecode.japi.checker.cli.Main'
classpath = files("$projectDir/../codequality/japi-checker-cli-0.2.0-SNAPSHOT.jar")
classpath = files("$projectDir/../codequality/japi-checker-cli-0.2.1-SNAPSHOT.jar")
args = [
"$projectDir/../codequality/spectator-api-BASELINE.jar",
jar.archivePath.path
Expand Down

0 comments on commit 8a1d4e8

Please sign in to comment.