-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
70 lines (58 loc) · 2.22 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
plugins {
java
application
kotlin("jvm") version "1.9.21"
jacoco
}
group = "me.cfpq.pointsto.miner"
version = "1.0-SNAPSHOT"
val jacoDbVersion: String by rootProject
val slf4jVersion: String by rootProject
val kotlinLoggingVersion: String by rootProject
val hibernateVersion: String by project
val springBootVersion: String by project
val guavaVersion: String by project
val commonsLangVersion: String by project
val commonsIoVersion: String by project
val junitVersion: String by project
val jacksonVersion: String by project
val mockitoVersion: String by project
val gsonVersion: String by project
application {
mainClass.set("me.cfpq.pointsto.miner.MainKt")
}
repositories {
mavenCentral()
}
dependencies {
implementation(group = "org.jacodb", name = "jacodb-core", version = jacoDbVersion)
implementation(group = "org.jacodb", name = "jacodb-analysis", version = jacoDbVersion)
implementation(group = "org.jacodb", name = "jacodb-approximations", version = jacoDbVersion)
implementation(group = "org.slf4j", name = "slf4j-simple", version = slf4jVersion)
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
// For some future analysis it may be needed to use a separate `ClassLoader` for libs under analysis,
// but right now graph mining doesn't necessarily require it, so for the sake of simplicity it's not used.
runtimeOnly("com.google.guava:guava:$guavaVersion")
runtimeOnly("org.apache.commons:commons-lang3:$commonsLangVersion")
runtimeOnly("commons-io:commons-io:$commonsIoVersion")
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
runtimeOnly("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
runtimeOnly("org.mockito:mockito-core:$mockitoVersion")
runtimeOnly("com.google.code.gson:gson:$gsonVersion")
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitVersion")
}
kotlin {
jvmToolchain(19)
}
tasks.test {
useJUnitPlatform()
finalizedBy(tasks.jacocoTestReport)
maxHeapSize = "5g"
}
tasks.jacocoTestReport {
dependsOn(tasks.test)
reports {
html.required.set(true)
}
}