Skip to content
This repository was archived by the owner on Aug 10, 2024. It is now read-only.

Commit 483e9f4

Browse files
committed
get dependencies working
1 parent 02edbb9 commit 483e9f4

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

build.gradle

+11-11
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,29 @@ tasks.named('test') {
2020
}
2121

2222
dependencies {
23+
api 'org.jsoup:jsoup:1.15.3'
2324
implementation 'org.apache.commons:commons-text:1.10.0'
24-
implementation 'org.jsoup:jsoup:1.15.3'
2525
implementation 'com.google.guava:guava:31.1-jre'
2626

2727
//////////////////////////////
2828
// Kotlin library dependencies
2929
//////////////////////////////
3030

31-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
32-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.4'
33-
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0'
31+
api 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
32+
api 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.4'
33+
api 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0'
3434

3535
////////////////////
3636
// Ktor dependencies
3737
////////////////////
38-
implementation "io.ktor:ktor-server-jetty:2.1.2"
39-
implementation "io.ktor:ktor-server-websockets:2.1.2"
40-
implementation "io.ktor:ktor-server-default-headers:2.1.2"
41-
implementation "io.ktor:ktor-server-compression:2.1.2"
42-
implementation "io.ktor:ktor-server-caching-headers:2.1.2"
43-
implementation "io.ktor:ktor-network-tls-certificates:2.1.2"
38+
api "io.ktor:ktor-server-jetty:2.1.2"
39+
api "io.ktor:ktor-server-websockets:2.1.2"
40+
api "io.ktor:ktor-server-default-headers:2.1.2"
41+
api "io.ktor:ktor-server-compression:2.1.2"
42+
api "io.ktor:ktor-server-caching-headers:2.1.2"
43+
api "io.ktor:ktor-network-tls-certificates:2.1.2"
4444

45-
implementation 'io.mola.galimatias:galimatias:0.2.1'
45+
api 'io.mola.galimatias:galimatias:0.2.1'
4646

4747
implementation 'io.github.microutils:kotlin-logging:3.0.0'
4848

0 commit comments

Comments
 (0)