Skip to content

Commit

Permalink
Support java8
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke Kobayashi committed Apr 19, 2016
1 parent ecff939 commit 9389cd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'com.github.dcendents.android-maven'

group='com.github.kobakei'

targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_8

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"io.github.kobakei.spot.annotation.PrefString",
"io.github.kobakei.spot.annotation.PrefStringSet"
})
@SupportedSourceVersion(SourceVersion.RELEASE_7)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class SpotCompiler extends AbstractProcessor {

private static final boolean LOGGABLE = false;
Expand Down
2 changes: 2 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
jdk:
- oraclejdk8

0 comments on commit 9389cd7

Please sign in to comment.