@@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
66fun properties (key : String ) = providers.gradleProperty(key).get()
77
88plugins {
9- id(" java" ) // Java support
9+ id(" java" )
1010 kotlin(" jvm" ) version " 2.0.20"
1111 id(" org.jetbrains.intellij.platform" ) version " 2.1.0"
1212 id(" org.jetbrains.changelog" ) version " 2.2.1"
@@ -21,37 +21,37 @@ version = properties("pluginVersion")
2121
2222repositories {
2323 mavenCentral()
24- // IntelliJ Platform Gradle Plugin Repositories Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-repositories-extension.html
2524 intellijPlatform {
2625 defaultRepositories()
2726 }
28- // maven(url = "https://packages.jetbrains.team/maven/p/ij/intellij-dependencies")
29- // maven(url = "https://packages.jetbrains.team/maven/p/iuia/qa-automation-maven")
3027}
3128
3229val jetty_version = " 11.0.24"
3330val slf4j_version = " 2.0.16"
34- val skyenet_version = " 1.2.9 "
31+ val skyenet_version = " 1.2.10 "
3532val remoterobot_version = " 0.11.23"
3633val jackson_version = " 2.17.2"
3734
3835dependencies {
3936 implementation(" software.amazon.awssdk:bedrock:2.25.9" )
4037 implementation(" software.amazon.awssdk:bedrockruntime:2.25.9" )
38+ implementation(" software.amazon.awssdk:s3:2.25.9" )
39+ implementation(" software.amazon.awssdk:kms:2.25.9" )
4140
4241 implementation(" org.apache.commons:commons-text:1.11.0" )
4342 implementation(group = " com.vladsch.flexmark" , name = " flexmark" , version = " 0.64.8" )
4443 implementation(" com.googlecode.java-diff-utils:diffutils:1.3.0" )
4544 implementation(group = " org.apache.httpcomponents.client5" , name = " httpclient5" , version = " 5.2.3" )
4645
47- implementation(group = " com.simiacryptus" , name = " jo-penai" , version = " 1.1.8 " )
46+ implementation(group = " com.simiacryptus" , name = " jo-penai" , version = " 1.1.9 " )
4847 implementation(group = " com.simiacryptus.skyenet" , name = " kotlin" , version = skyenet_version)
4948 implementation(group = " com.simiacryptus.skyenet" , name = " core" , version = skyenet_version)
5049 implementation(group = " com.simiacryptus.skyenet" , name = " webui" , version = skyenet_version)
5150
5251 implementation(group = " com.fasterxml.jackson.core" , name = " jackson-databind" , version = jackson_version)
5352 implementation(group = " com.fasterxml.jackson.core" , name = " jackson-annotations" , version = jackson_version)
5453 implementation(group = " com.fasterxml.jackson.module" , name = " jackson-module-kotlin" , version = jackson_version)
54+ implementation (" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version " )
5555
5656 implementation(group = " org.eclipse.jetty" , name = " jetty-server" , version = jetty_version)
5757 implementation(group = " org.eclipse.jetty" , name = " jetty-servlet" , version = jetty_version)
@@ -62,16 +62,12 @@ dependencies {
6262
6363 implementation(group = " org.slf4j" , name = " slf4j-api" , version = slf4j_version)
6464
65- // testImplementation(group = "com.squareup.okhttp3", name = "okhttp", version = "4.12.0")
6665 testImplementation(platform(" org.junit:junit-bom:5.11.2" ))
6766 testImplementation(" org.junit.jupiter:junit-jupiter-api" )
6867 testImplementation(" org.junit.jupiter:junit-jupiter-engine" )
6968 testImplementation(" org.junit.vintage:junit-vintage-engine" )
7069 testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
7170
72- // testImplementation("org.seleniumhq.selenium:selenium-java:4.15.0")
73- // testImplementation(sourceSets.main.get().output)
74-
7571 testImplementation(group = " com.intellij.remoterobot" , name = " remote-robot" , version = remoterobot_version)
7672 testImplementation(group = " com.intellij.remoterobot" , name = " remote-fixtures" , version = remoterobot_version)
7773 testImplementation(
@@ -111,6 +107,7 @@ tasks {
111107
112108 jar {
113109 duplicatesStrategy = DuplicatesStrategy .EXCLUDE
110+ exclude(" org/jetbrains/**" )
114111 }
115112
116113
0 commit comments