Skip to content

Commit

Permalink
adding validations
Browse files Browse the repository at this point in the history
  • Loading branch information
deniswsrosa committed May 6, 2024
1 parent feda039 commit d6994a2
Show file tree
Hide file tree
Showing 16 changed files with 1,703 additions and 2 deletions.
14 changes: 12 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("java")
id("org.jetbrains.intellij") version "1.17.2"
id("org.jetbrains.intellij") version "1.17.3"
}

group = "com.couchbase"
Expand Down Expand Up @@ -60,6 +60,7 @@ dependencies {
testImplementation("org.testcontainers:couchbase:1.19.7")
testImplementation("org.testcontainers:junit-jupiter:1.19.7")


}

// Configure Gradle IntelliJ Plugin
Expand All @@ -68,7 +69,7 @@ intellij {
version.set("2023.3.5")
type.set("IC") // Target IDE Platform

plugins.set(listOf(/* Plugin Dependencies */))
plugins.set(listOf("com.intellij.java"))
}

tasks {
Expand All @@ -92,4 +93,13 @@ tasks {
publishPlugin {
token.set(System.getenv("PUBLISH_TOKEN"))
}

val patchArgs =
listOf("--add-exports java.desktop/sun.awt=ALL-UNNAMED --add-opens java.desktop/java.awt=ALL-UNNAMED")

test {
jvmArgs(patchArgs)
}
}


Loading

0 comments on commit d6994a2

Please sign in to comment.