Skip to content
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "Fix issue where the plugin can't read SSO tokens from disk / always returns 'Unable to load client registration'"
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ configurations {
// IDE provides Kotlin
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx")

exclude(group = "com.fasterxml.jackson.core")
exclude(group = "com.fasterxml.jackson.module", "jackson-module-kotlin")
exclude(group = "com.fasterxml.jackson.dataformat", "jackson-dataformat-yaml")
}

configureEach {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tasks.withType<PatchPluginXmlTask>().configureEach {
intellijPlatform {
instrumentCode = false

verifyPlugin {
pluginVerification {
ides {
// recommended() appears to resolve latest EAP for a product?
ide(provider { IntelliJPlatformType.IntellijIdeaCommunity }, toolkitIntelliJ.version())
Expand Down Expand Up @@ -65,14 +65,6 @@ dependencies {
}
}

configurations {
runtimeClasspath {
exclude(group = "com.fasterxml.jackson.core")
exclude(group = "com.fasterxml.jackson.module", "jackson-module-kotlin")
exclude(group = "com.fasterxml.jackson.dataformat", "jackson-dataformat-yaml")
}
}

tasks.runIde {
systemProperty("aws.toolkit.developerMode", true)
systemProperty("ide.plugins.snapshot.on.unload.fail", true)
Expand Down
Loading