Skip to content

Commit 03e8495

Browse files
author
R. Tyler Croy
authored
Merge pull request #300 from rtyler/jdk8
Force source compatibility to JDK8 and bump our minor version
2 parents ab11a0c + cb6cd6d commit 03e8495

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ buildscript {
1515
apply plugin: 'idea'
1616

1717
group = 'com.github.jruby-gradle'
18-
version = '1.4.0'
18+
version = '1.5.0'
1919
defaultTasks 'check', 'assemble'
20+
sourceCompatibility = '1.8'
21+
targetCompatibility = '1.8'
2022

2123
if (!releaseBuild) {
2224
version = "${version}-SNAPSHOT"
@@ -62,8 +64,8 @@ subprojects {
6264
}
6365

6466
plugins.withType(JavaPlugin) {
65-
sourceCompatibility = 1.7
66-
targetCompatibility = 1.7
67+
sourceCompatibility = 1.8
68+
targetCompatibility = 1.8
6769

6870

6971
project.tasks.withType(JavaCompile) { task ->

0 commit comments

Comments
 (0)