Skip to content

Commit

Permalink
Merge pull request #16 from Automattic/java-8
Browse files Browse the repository at this point in the history
Set java compatibility to java 8
  • Loading branch information
jkmassel authored May 28, 2021
2 parents d4c39c2 + 80fc9e9 commit fe160ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "configure"
version = "0.6.0"
version = "0.6.1"
authors = ["Jeremy Massel <jeremy.massel@automattic.com>"]
edition = "2018"

Expand Down
7 changes: 6 additions & 1 deletion gradle-plugin/configure/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

/// The plugin version number – change this to match whatever your tag will be
group = "com.automattic.android"
version = "0.6.0"
version = "0.6.1"

buildscript {
repositories {
Expand All @@ -28,6 +28,11 @@ repositories {
jcenter()
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

/// Don't allow warnings in the project – this can prevent us from shipping a broken build
tasks.withType<KotlinCompile> {
kotlinOptions.allWarningsAsErrors = true
Expand Down

0 comments on commit fe160ac

Please # to comment.