mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
code_samples: 2020.3.4, Java11, Gradle plugin 1.1.4, #2
This commit is contained in:
parent
0d4c3d1331
commit
a8f4efb314
@ -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 {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.1.2'
|
id 'org.jetbrains.intellij' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.intellij.sdk'
|
group 'org.intellij.sdk'
|
||||||
version '2.0.0'
|
version '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -16,7 +16,7 @@ repositories {
|
|||||||
|
|
||||||
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||||||
intellij {
|
intellij {
|
||||||
version = '2020.2.4'
|
version = '2020.3.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
buildSearchableOptions {
|
buildSearchableOptions {
|
||||||
@ -25,6 +25,6 @@ buildSearchableOptions {
|
|||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
version = project.version
|
version = project.version
|
||||||
sinceBuild = '202'
|
sinceBuild = '203'
|
||||||
untilBuild = '203.*'
|
untilBuild = '212.*'
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.1.2'
|
id 'org.jetbrains.intellij' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.intellij.sdk'
|
group 'org.intellij.sdk'
|
||||||
version '2.0.0'
|
version '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -26,7 +26,7 @@ test {
|
|||||||
|
|
||||||
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||||||
intellij {
|
intellij {
|
||||||
version = '2020.2.4'
|
version = '2020.3.4'
|
||||||
plugins = ['com.intellij.java']
|
plugins = ['com.intellij.java']
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,6 +36,6 @@ buildSearchableOptions {
|
|||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
version = project.version
|
version = project.version
|
||||||
sinceBuild = '202'
|
sinceBuild = '203'
|
||||||
untilBuild = '203.*'
|
untilBuild = '212.*'
|
||||||
}
|
}
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.1.2'
|
id 'org.jetbrains.intellij' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.intellij.sdk'
|
group 'org.intellij.sdk'
|
||||||
version '2.0.0'
|
version '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -26,7 +26,7 @@ test {
|
|||||||
|
|
||||||
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||||||
intellij {
|
intellij {
|
||||||
version = '2020.2.4'
|
version = '2020.3.4'
|
||||||
plugins = ['com.intellij.java']
|
plugins = ['com.intellij.java']
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,6 +36,6 @@ buildSearchableOptions {
|
|||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
version = project.version
|
version = project.version
|
||||||
sinceBuild = '202'
|
sinceBuild = '203'
|
||||||
untilBuild = '203.*'
|
untilBuild = '212.*'
|
||||||
}
|
}
|
@ -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 {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.1.2'
|
id 'org.jetbrains.intellij' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.intellij.sdk'
|
group 'org.intellij.sdk'
|
||||||
version '2.0.0'
|
version '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -16,7 +16,7 @@ repositories {
|
|||||||
|
|
||||||
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||||||
intellij {
|
intellij {
|
||||||
version = '2020.2.4'
|
version = '2020.3.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
buildSearchableOptions {
|
buildSearchableOptions {
|
||||||
@ -25,6 +25,6 @@ buildSearchableOptions {
|
|||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
version = project.version
|
version = project.version
|
||||||
sinceBuild = '202'
|
sinceBuild = '203'
|
||||||
untilBuild = '203.*'
|
untilBuild = '212.*'
|
||||||
}
|
}
|
||||||
|
@ -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 {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.1.2'
|
id 'org.jetbrains.intellij' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.intellij.sdk'
|
group 'org.intellij.sdk'
|
||||||
version '2.1.0'
|
version '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -16,7 +16,7 @@ repositories {
|
|||||||
|
|
||||||
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||||||
intellij {
|
intellij {
|
||||||
version = '2020.2.4'
|
version = '2020.3.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
buildSearchableOptions {
|
buildSearchableOptions {
|
||||||
@ -25,6 +25,6 @@ buildSearchableOptions {
|
|||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
version = project.version
|
version = project.version
|
||||||
sinceBuild = '202'
|
sinceBuild = '203'
|
||||||
untilBuild = '203.*'
|
untilBuild = '212.*'
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.1.2'
|
id 'org.jetbrains.intellij' version '1.1.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.intellij.sdk'
|
group 'org.intellij.sdk'
|
||||||
version '2.0.0'
|
version '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -16,7 +16,7 @@ repositories {
|
|||||||
|
|
||||||
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
||||||
intellij {
|
intellij {
|
||||||
version = '2020.2.4'
|
version = '2020.3.4'
|
||||||
plugins = ['com.intellij.java']
|
plugins = ['com.intellij.java']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user