From 78d932a0cb32a499201faf3d924a42a4131e9015 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Mon, 18 Jan 2021 21:48:41 +0100 Subject: [PATCH] [java-decompiler] aligning language level with the main project; bumping Gradle version GitOrigin-RevId: 068aadf4b64097c66de34ff19134f57083d2ac66 --- build.gradle | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 9694117..797515b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,9 @@ -// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. apply plugin: 'java' compileJava { - sourceCompatibility '1.8' - targetCompatibility '1.8' + sourceCompatibility '11' + targetCompatibility '11' } sourceSets { @@ -22,4 +22,4 @@ jar { manifest { attributes 'Main-Class': 'org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler' } -} \ No newline at end of file +} diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 657de85..56a6b16 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.5-all.zip