-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
73 lines (55 loc) · 3.4 KB
/
settings.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
rootProject.name = "QYoga"
include("app", "e2e-tests")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
// plugin versions
val kotlinVersion = version("kotlin", "2.0.21")
val springBootVersion = version("springBoot", "3.3.5")
val springDependencyManagementVersion = version("springDependencyManagement", "1.1.6")
val koverVersion = version("kover", "0.6.1")
val gitPropertiesVersion = version("gitProperties", "2.4.2")
// lib versions
val poiVersion = version("poi", "5.3.0")
// plugins
plugin("kotlin", "org.jetbrains.kotlin.jvm").versionRef(kotlinVersion)
plugin("kotlin.spring", "org.jetbrains.kotlin.plugin.spring").versionRef(kotlinVersion)
plugin("spring.dependencyManagement", "io.spring.dependency-management").versionRef(
springDependencyManagementVersion
)
plugin("spring.boot", "org.springframework.boot").versionRef(springBootVersion)
plugin("kover", "org.jetbrains.kotlinx.kover").versionRef(koverVersion)
plugin("gitProperties", "com.gorylenko.gradle-git-properties").versionRef(gitPropertiesVersion)
// libs
library("jackarta-validation", "jakarta.validation", "jakarta.validation-api").version("3.1.0")
library(
"thymeleaf-extras-java8time",
"org.thymeleaf.extras",
"thymeleaf-extras-java8time"
).version("3.0.4.RELEASE")
library("postgres", "org.postgresql", "postgresql").version("42.7.4")
library("minio", "io.minio", "minio").version("8.5.13")
library("poi-ooxml", "org.apache.poi", "poi-ooxml").versionRef(poiVersion)
library("poi-ooxml-lite", "org.apache.poi", "poi-ooxml-lite").versionRef(poiVersion)
bundle("poi", listOf("poi-ooxml", "poi-ooxml-lite"))
library("nanocaptcha", "net.logicsquad", "nanocaptcha").version("2.1")
}
create("testLibs") {
val selenideVersion = version("selenide", "7.5.1")
val testContainersVersion = version("testcontainers", "1.20.3")
val restAssuredVersion = version("restAssured", "5.5.0")
library("selenide-proxy", "com.codeborne", "selenide-proxy").versionRef(selenideVersion)
library("testcontainers-selenium", "org.testcontainers", "selenium").versionRef(testContainersVersion)
library("kotest-assertions", "io.kotest", "kotest-assertions-core").version("5.9.1")
library("restassured-core", "io.rest-assured", "rest-assured").versionRef(restAssuredVersion)
library("restassured-kotlin", "io.rest-assured", "kotlin-extensions").versionRef(restAssuredVersion)
bundle("restassured", listOf("restassured-core", "restassured-kotlin"))
library("jsoup", "org.jsoup", "jsoup").version("1.18.1")
library("datafaker", "net.datafaker", "datafaker").version("2.4.1")
library("greenmail", "com.icegreen", "greenmail-junit5").version("2.1.0")
library("testcontainers-minio", "org.testcontainers", "minio").versionRef(testContainersVersion)
library("mockito-kotlin", "org.mockito.kotlin", "mockito-kotlin").version("5.4.0")
library("archunit", "com.tngtech.archunit", "archunit").version("1.3.0")
}
}
}