Skip to content

Commit

Permalink
Fix build break for IntelliJ EAP 2019.1
Browse files Browse the repository at this point in the history
  • Loading branch information
t-rufang committed Feb 26, 2019
1 parent cda4d4a commit a4a9eaa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
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
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

0 comments on commit a4a9eaa

Please sign in to comment.