forked from aymenbs2/AymoAi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
82 lines (65 loc) · 1.93 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import org.jetbrains.kotlin.config.JvmTarget
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "2.0.0"
id("org.jetbrains.intellij") version "1.17.4"
}
group = "com.aymenDev"
version = "1.2.2"
repositories {
mavenCentral()
}
dependencies {
implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.3")
implementation("com.google.code.gson:gson:2.8.9") // Add Gson dependency
implementation("org.apache.xmlgraphics:xmlgraphics-commons:2.6")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
testImplementation("org.mockito:mockito-core:4.0.0")
testImplementation("org.jetbrains.kotlin:kotlin-test:1.7.20")
}
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.2.6")
type.set("IC") // Target IDE Platform
plugins.set(listOf("android", "org.jetbrains.kotlin"))
}
tasks {
// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "17"
targetCompatibility = "17"
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
}
patchPluginXml {
sinceBuild.set("232")
untilBuild.set("242.*")
}
signPlugin {
certificateChain.set(System.getenv("AYMOAI_CHAIN"))
privateKey.set(System.getenv("AYMOAI_CERTIF"))
password.set(System.getenv("AYMOAI_PASS"))
}
publishPlugin {
token.set(System.getenv("AYMOAI_TOCKEN"))
}
processResources {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
}
sourceSets {
main {
resources {
srcDirs("src/main/resources")
}
}
test {
java.srcDir("src/test/kotlin")
}
}
tasks.withType<Test> {
useJUnitPlatform()
}