From 0d4c3d13314c30ae86a670a9e3792b7cba1e0158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 28 Jul 2021 15:55:05 +0200 Subject: [PATCH] code_samples: 2020.3.4, Java11, Gradle plugin 1.1.4 --- inspection_basics/build.gradle | 12 ++++++------ kotlin_demo/build.gradle | 14 +++++++------- live_templates/build.gradle | 14 +++++++------- max_opened_projects/build.gradle | 14 +++++++------- module/build.gradle | 12 ++++++------ project_model/build.gradle | 14 +++++++------- project_view_pane/build.gradle | 12 ++++++------ project_wizard/build.gradle | 12 ++++++------ psi_demo/build.gradle | 14 +++++++------- run_configuration/build.gradle | 12 ++++++------ settings/build.gradle | 14 +++++++------- simple_language_plugin/build.gradle | 14 +++++++------- tool_window/build.gradle | 12 ++++++------ tree_structure_provider/build.gradle | 12 ++++++------ 14 files changed, 91 insertions(+), 91 deletions(-) diff --git a/inspection_basics/build.gradle b/inspection_basics/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/inspection_basics/build.gradle +++ b/inspection_basics/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/kotlin_demo/build.gradle b/kotlin_demo/build.gradle index d2d1c21f7..468d9eea5 100644 --- a/kotlin_demo/build.gradle +++ b/kotlin_demo/build.gradle @@ -2,14 +2,14 @@ plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' id 'org.jetbrains.kotlin.jvm' version '1.5.21' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -21,7 +21,7 @@ dependencies { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -30,13 +30,13 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } compileKotlin { - kotlinOptions.jvmTarget = "1.8" + kotlinOptions.jvmTarget = "11" } compileTestKotlin { - kotlinOptions.jvmTarget = "1.8" + kotlinOptions.jvmTarget = "11" } diff --git a/live_templates/build.gradle b/live_templates/build.gradle index f6f131aa5..cae6496e9 100644 --- a/live_templates/build.gradle +++ b/live_templates/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' -version '2.1.0' +version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/max_opened_projects/build.gradle b/max_opened_projects/build.gradle index f6f131aa5..cae6496e9 100644 --- a/max_opened_projects/build.gradle +++ b/max_opened_projects/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' -version '2.1.0' +version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/module/build.gradle b/module/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/module/build.gradle +++ b/module/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/project_model/build.gradle b/project_model/build.gradle index fb718b1f8..67eab5708 100644 --- a/project_model/build.gradle +++ b/project_model/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' plugins = ['com.intellij.java'] } @@ -26,6 +26,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' -} + sinceBuild = '203' + untilBuild = '212.*' +} \ No newline at end of file diff --git a/project_view_pane/build.gradle b/project_view_pane/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/project_view_pane/build.gradle +++ b/project_view_pane/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/project_wizard/build.gradle b/project_wizard/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/project_wizard/build.gradle +++ b/project_wizard/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/psi_demo/build.gradle b/psi_demo/build.gradle index fb718b1f8..67eab5708 100644 --- a/psi_demo/build.gradle +++ b/psi_demo/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' plugins = ['com.intellij.java'] } @@ -26,6 +26,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' -} + sinceBuild = '203' + untilBuild = '212.*' +} \ No newline at end of file diff --git a/run_configuration/build.gradle b/run_configuration/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/run_configuration/build.gradle +++ b/run_configuration/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/settings/build.gradle b/settings/build.gradle index 25de8661a..cae6496e9 100644 --- a/settings/build.gradle +++ b/settings/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' -version '1.0.0' +version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/simple_language_plugin/build.gradle b/simple_language_plugin/build.gradle index 3fc10a4ea..1244c33f5 100644 --- a/simple_language_plugin/build.gradle +++ b/simple_language_plugin/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -32,7 +32,7 @@ dependencies { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' plugins = ['com.intellij.java'] } @@ -42,6 +42,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' -} + sinceBuild = '203' + untilBuild = '212.*' +} \ No newline at end of file diff --git a/tool_window/build.gradle b/tool_window/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/tool_window/build.gradle +++ b/tool_window/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' } diff --git a/tree_structure_provider/build.gradle b/tree_structure_provider/build.gradle index 2fa900dbc..cae6496e9 100644 --- a/tree_structure_provider/build.gradle +++ b/tree_structure_provider/build.gradle @@ -1,14 +1,14 @@ -// Copyright 2000-2020 JetBrains s.r.o. and other contributors. 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. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. plugins { id 'java' - id 'org.jetbrains.intellij' version '1.1.2' + id 'org.jetbrains.intellij' version '1.1.4' } group 'org.intellij.sdk' version '2.0.0' -sourceCompatibility = 1.8 +sourceCompatibility = 11 repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version = '2020.2.4' + version = '2020.3.4' } buildSearchableOptions { @@ -25,6 +25,6 @@ buildSearchableOptions { patchPluginXml { version = project.version - sinceBuild = '202' - untilBuild = '203.*' + sinceBuild = '203' + untilBuild = '212.*' }