-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
32 lines (31 loc) · 1.81 KB
/
build.gradle.kts
File metadata and controls
32 lines (31 loc) · 1.81 KB
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
val intellijPluginVersion: String? by rootProject
val kotlinLoggingVersion: String? by rootProject
val apacheCommonsTextVersion: String? by rootProject
val jacksonVersion: String? by rootProject
val ideType: String? by rootProject
val pythonCommunityPluginVersion: String? by rootProject
val pythonUltimatePluginVersion: String? by rootProject
val log4j2Version: String? by rootProject
val moshiVersion: String? by rootProject
val pythonTypesAPIHash: String? by rootProject
dependencies {
api(project(":utbot-fuzzing"))
api(project(":utbot-framework"))
api(project(":utbot-python-parser"))
api(project(":utbot-python-executor"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation(group = "org.apache.commons", name = "commons-lang3", version = "3.12.0")
implementation(group = "commons-io", name = "commons-io", version = "2.11.0")
implementation("com.squareup.moshi:moshi:$moshiVersion")
implementation("com.squareup.moshi:moshi-kotlin:$moshiVersion")
implementation("com.squareup.moshi:moshi-adapters:$moshiVersion")
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
implementation("org.functionaljava:functionaljava:5.0")
implementation("org.functionaljava:functionaljava-quickcheck:5.0")
implementation("org.functionaljava:functionaljava-java-core:5.0")
implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion)
implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4j2Version)
implementation(group = "org.apache.logging.log4j", name = "log4j-api", version = log4j2Version)
implementation("com.github.UnitTestBot:PythonTypesAPI:$pythonTypesAPIHash")
}