Skip to content

Commit 522e7c1

Browse files
committed
Merge remote-tracking branch 't-rufang/rufan/eap211' into hanxiao/eap
2 parents c93815f + 85e5185 commit 522e7c1

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id "org.jetbrains.intellij" version "0.5.0"
3-
id "org.jetbrains.kotlin.jvm" version "1.3.72"
2+
id "org.jetbrains.intellij" version "0.7.2"
3+
id "org.jetbrains.kotlin.jvm" version "1.4.20"
44
id "de.undercouch.download" version "4.0.4"
55
id "com.github.ben-manes.versions" version "0.28.0"
66
id 'org.openjfx.javafxplugin' version '0.0.9'
@@ -140,7 +140,7 @@ dependencies {
140140
compile group: 'jaxen', name: 'jaxen', version: '1.2.0'
141141
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
142142

143-
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72")
143+
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.20")
144144

145145
// https://mvnrepository.com/artifact/org.projectlombok/lombok
146146
compileOnly 'org.projectlombok:lombok:1.18.8'

PluginsAndFeatures/azure-toolkit-for-intellij/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ javaVersion=11
22
org.gradle.jvmargs='-Duser.language=en'
33
sources=false
44
intellij_version=IC-LATEST-EAP-SNAPSHOT
5-
dep_plugins=org.intellij.scala:2020.3.8
5+
dep_plugins=org.intellij.scala:2021.1.10
66
applicationinsights.key=57cc111a-36a8-44b3-b044-25d293b8b77c
77
updateVersionRange=true
8-
patchPluginXmlSinceBuild=203.5419.21
8+
patchPluginXmlSinceBuild=211.6085.26

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/hdinsight/spark/common/CosmosSparkSubmitModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ open class CosmosSparkSubmitModel : SparkSubmitModel {
4444
constructor(project: Project, submissionParameter: SparkSubmissionParameter): super(project, submissionParameter)
4545

4646
override fun getDefaultParameters(): Stream<Pair<String, out Any>> {
47-
return listOf(
47+
return listOf<Pair<String, out Any>>(
4848
Pair(SparkSubmissionParameter.DriverMemory, SparkSubmissionParameter.DriverMemoryDefaultValue),
4949
Pair(SparkSubmissionParameter.DriverCores, SparkSubmissionParameter.DriverCoresDefaultValue),
5050
Pair(SparkSubmissionParameter.ExecutorMemory, SparkSubmissionParameter.ExecutorMemoryDefaultValue),

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/hdinsight/spark/console/SparkExecuteInConsoleActionPromoter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import com.microsoft.azure.hdinsight.common.logger.ILogger
3030
class SparkExecuteInConsoleActionPromoter : ActionPromoter, ILogger {
3131
private fun shouldPromote(anAction: AnAction): Boolean = anAction is SparkConsoleExecuteAction
3232

33-
override fun promote(actions: MutableList<AnAction>, context: DataContext): MutableList<AnAction> =
33+
override fun promote(actions: MutableList<out AnAction>, context: DataContext): MutableList<AnAction> =
3434
actions.firstOrNull { shouldPromote(it) }
3535
?.let { mutableListOf(it) }
3636
?: mutableListOf()

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/hdinsight/spark/run/configuration/CosmosServerlessSparkSubmitModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class CosmosServerlessSparkSubmitModel(project: Project) : SparkSubmitModel(proj
4242
}
4343

4444
override fun getDefaultParameters(): Stream<Pair<String, out Any>> {
45-
return listOf(
45+
return listOf<Pair<String, out Any>>(
4646
Pair(CreateSparkBatchJobParameters.DriverMemory, CreateSparkBatchJobParameters.DriverMemoryDefaultValue),
4747
Pair(CreateSparkBatchJobParameters.DriverCores, CreateSparkBatchJobParameters.DriverCoresDefaultValue),
4848
Pair(CreateSparkBatchJobParameters.ExecutorMemory, CreateSparkBatchJobParameters.ExecutorMemoryDefaultValue),

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ARTIFACTS_DIR=artifacts
22
INJECT_INTELLIJ_VERSION=true
3-
IJ_VERSION_MAJOR_BUILD=203.5419.21
4-
IJ_VERSION_MAJOR=2020.3
3+
IJ_VERSION_MAJOR_BUILD=211.6085.26
4+
IJ_VERSION_MAJOR=LATEST-EAP-SNAPSHOT
55
IJ_VERSION_MINOR=
6-
IJ_SCALA_VERSION_LATEST=2020.3.8
6+
IJ_SCALA_VERSION_LATEST=2021.1.10
77
skipCheckstyle=true
88
skipTest=false
99
forceClean=false

0 commit comments

Comments
 (0)