We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab11a0c commit cb6cd6dCopy full SHA for cb6cd6d
build.gradle
@@ -15,8 +15,10 @@ buildscript {
15
apply plugin: 'idea'
16
17
group = 'com.github.jruby-gradle'
18
-version = '1.4.0'
+version = '1.5.0'
19
defaultTasks 'check', 'assemble'
20
+sourceCompatibility = '1.8'
21
+targetCompatibility = '1.8'
22
23
if (!releaseBuild) {
24
version = "${version}-SNAPSHOT"
@@ -62,8 +64,8 @@ subprojects {
62
64
}
63
65
66
plugins.withType(JavaPlugin) {
- sourceCompatibility = 1.7
- targetCompatibility = 1.7
67
+ sourceCompatibility = 1.8
68
+ targetCompatibility = 1.8
69
70
71
project.tasks.withType(JavaCompile) { task ->
0 commit comments