Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build break for IntelliJ EAP 2019.1 #2763

Merged
merged 1 commit into from
Feb 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PluginsAndFeatures/azure-toolkit-for-intellij/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.jetbrains.intellij" version "0.3.12"
id "org.jetbrains.intellij" version "0.4.2"
id "org.jetbrains.kotlin.jvm" version "1.2.50"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ javaVersion=1.8
org.gradle.jvmargs='-Duser.language=en'
sources=false
intellij_version=IC-LATEST-EAP-SNAPSHOT
dep_plugins=org.intellij.scala:2018.3.2
dep_plugins=org.intellij.scala:2019.1.1
Copy link
Member

@wezhang wezhang Feb 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it back compatible with 183? #Resolved

applicationinsights.key=57cc111a-36a8-44b3-b044-25d293b8b77c
updateVersionRange=true
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
@State(
name = "HDInsightSettings",
storages = {
@Storage(file = "$APP_CONFIG$/azure.application.settings.xml",
scheme = StorageScheme.DIRECTORY_BASED)
@Storage(file = "$APP_CONFIG$/azure.application.settings.xml")
})
public class ApplicationSettings implements PersistentStateComponent<ApplicationSettings.State> {
private State myState = new State();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
name = "AzureSettings",
storages = {
@Storage(file = "$PROJECT_FILE$"),
@Storage(file = "$PROJECT_CONFIG_DIR$/azureSettings.xml", scheme = StorageScheme.DIRECTORY_BASED)
@Storage(file = "$PROJECT_CONFIG_DIR$/azureSettings.xml")
}
)
public class AzureSettings implements PersistentStateComponent<AzureSettings.State> {
Expand Down