Skip to content

Commit dd03a63

Browse files
committed
Revert "feat: decrease size of jar from 33.9MB to"
This reverts commit 3e2f0eb.
1 parent 3e2f0eb commit dd03a63

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

build.gradle.kts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,15 @@ repositories {
3838
}
3939

4040
dependencies {
41+
implementation(kotlin("stdlib-jdk8"))
42+
implementation(kotlin("reflect"))
43+
4144
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.3")
4245
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.3")
4346
testImplementation("io.vertx:vertx-unit:$vertxVersion")
4447

4548
implementation("io.vertx:vertx-web:$vertxVersion")
49+
implementation("io.vertx:vertx-web-client:$vertxVersion")
4650
implementation("io.vertx:vertx-lang-kotlin:$vertxVersion")
4751
implementation("io.vertx:vertx-config:$vertxVersion")
4852
implementation("io.vertx:vertx-config-hocon:$vertxVersion")
@@ -54,17 +58,34 @@ dependencies {
5458
implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4jVersion)
5559
implementation(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
5660

61+
// https://mvnrepository.com/artifact/commons-codec/commons-codec
62+
implementation(group = "commons-codec", name = "commons-codec", version = "1.17.1")
63+
5764
// https://mvnrepository.com/artifact/org.springframework/spring-context
5865
implementation("org.springframework:spring-context:$springContextVersion")
5966

6067
implementation("org.pf4j:pf4j:${pf4jVersion}")
6168

69+
implementation("org.apache.commons:commons-lang3:3.17.0")
70+
71+
// https://mvnrepository.com/artifact/org.apache.commons/commons-text
72+
implementation("org.apache.commons:commons-text:1.12.0")
73+
74+
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
75+
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.1")
76+
6277
// https://mvnrepository.com/artifact/com.google.code.gson/gson
6378
implementation("com.google.code.gson:gson:$gsonVersion")
6479

80+
// https://mvnrepository.com/artifact/org.ow2.asm/asm
81+
implementation("org.ow2.asm:asm:9.7.1")
82+
6583
// https://mvnrepository.com/artifact/com.github.jknack/handlebars
6684
implementation("com.github.jknack:handlebars:$handlebarsVersion")
6785

86+
// https://mvnrepository.com/artifact/commons-validator/commons-validator
87+
implementation("commons-validator:commons-validator:1.9.0")
88+
6889
// https://mvnrepository.com/artifact/com.jcabi/jcabi-manifests
6990
implementation("com.jcabi:jcabi-manifests:2.1.0")
7091
}

0 commit comments

Comments
 (0)