|
1 | | -plugins { |
2 | | - kotlin("jvm") version "1.5.31" |
3 | | - kotlin("plugin.serialization") version "1.6.0" |
4 | | - |
5 | | - id("com.squareup.sqldelight") version "1.5.2" |
6 | | - id("com.github.johnrengelman.shadow") version "7.1.0" |
7 | | - |
8 | | - application |
9 | | -} |
10 | | - |
11 | | -group = "com.londogard" |
12 | | -version = "0.0.1" |
13 | | - |
14 | | -application { |
15 | | - mainClass.set("io.ktor.server.netty.EngineMain") |
16 | | -} |
17 | | - |
18 | | -sourceSets { |
19 | | - |
20 | | - main { |
21 | | - java.setSrcDirs(listOf("src")) |
22 | | - |
23 | | - resources { |
24 | | - setSrcDirs(listOf("resources")) |
25 | | - } |
26 | | - } |
27 | | -} |
28 | | - |
29 | | -repositories { |
30 | | - mavenLocal() |
31 | | - mavenCentral() |
32 | | - maven(url="https://kotlin.bintray.com/ktor") |
33 | | - maven(url="https://jitpack.io") |
34 | | -} |
35 | | - |
36 | | -val ktorVersion="1.6.4" |
37 | | -val sqldelightVersion="1.5.3" |
38 | | -val koinVersion="3.1.4" |
39 | | -val kluentVersion="1.68" |
40 | | -val kotlinVersion="1.5.31" |
41 | | -val kotlinxSerialization="1.3.0" |
42 | | -val logbackVersion="1.2.7" |
43 | | - |
44 | | -dependencies { |
45 | | - implementation(kotlin("stdlib")) |
46 | | - implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:$kotlinxSerialization") |
47 | | - implementation("org.jetbrains.kotlinx:kotlinx-serialization-cbor:$kotlinxSerialization") |
48 | | - implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinxSerialization") |
49 | | - implementation("org.json:json:20210307") // XML |
50 | | - |
51 | | - implementation("ch.qos.logback:logback-classic:$logbackVersion") |
52 | | - |
53 | | - implementation("com.londogard:summarize-kt:1.2.0") |
54 | | - implementation("com.londogard:londogard-nlp-toolkit:1.0.0") |
55 | | - implementation("com.londogard:text-gen-kt:1.1.0") |
56 | | - implementation("com.londogard:fuzzy-match-kt:1.0.1") |
57 | | - implementation("com.londogard:stokk:0.1.0") |
58 | | - |
59 | | - implementation("org.jetbrains:markdown:0.2.4") |
60 | | - |
61 | | - implementation("com.squareup.sqldelight:sqlite-driver:$sqldelightVersion") |
62 | | - implementation("com.squareup.sqldelight:runtime-jvm:$sqldelightVersion") |
63 | | - |
64 | | - implementation("io.ktor:ktor-server-netty:$ktorVersion") |
65 | | - implementation("io.ktor:ktor-server-core:$ktorVersion") |
66 | | - implementation("io.ktor:ktor-html-builder:$ktorVersion") |
67 | | - implementation("io.ktor:ktor-auth:$ktorVersion") |
68 | | - implementation("io.ktor:ktor-auth-jwt:$ktorVersion") |
69 | | - implementation("io.ktor:ktor-serialization:$ktorVersion") |
70 | | - implementation("io.ktor:ktor-locations:$ktorVersion") |
71 | | - |
72 | | - implementation("io.ktor:ktor-client-core:$ktorVersion") |
73 | | - implementation("io.ktor:ktor-client-cio:$ktorVersion") |
74 | | - implementation("io.ktor:ktor-client-serialization:$ktorVersion") |
75 | | - |
76 | | - implementation("io.insert-koin:koin-ktor:$koinVersion") |
77 | | - |
78 | | - // implementation 'com.github.kwebio:kweb-core:0.8.9' |
79 | | - |
80 | | - implementation("org.boofcv:boofcv-core:0.39") |
81 | | - implementation("org.boofcv:boofcv-kotlin:0.39") |
82 | | - |
83 | | - implementation("org.mindrot:jbcrypt:0.4") |
84 | | - |
85 | | - testImplementation("io.ktor:ktor-server-test-host:$ktorVersion") |
86 | | - testImplementation("org.amshove.kluent:kluent:$kluentVersion") |
87 | | -} |
88 | | - |
89 | | -sqldelight { |
90 | | - database("Database") { |
91 | | - packageName = "com.londogard" |
92 | | - } |
93 | | -} |
| 1 | +plugins { |
| 2 | + kotlin("jvm") version "1.6.0" |
| 3 | + kotlin("plugin.serialization") version "1.6.0" |
| 4 | + |
| 5 | + id("com.squareup.sqldelight") version "1.5.3" |
| 6 | + id("com.github.johnrengelman.shadow") version "7.1.0" |
| 7 | + |
| 8 | + application |
| 9 | +} |
| 10 | + |
| 11 | +group = "com.londogard" |
| 12 | +version = "0.0.1" |
| 13 | + |
| 14 | +application { |
| 15 | + mainClass.set("io.ktor.server.netty.EngineMain") |
| 16 | +} |
| 17 | + |
| 18 | +sourceSets { |
| 19 | + |
| 20 | + main { |
| 21 | + java.setSrcDirs(listOf("src")) |
| 22 | + |
| 23 | + resources { |
| 24 | + setSrcDirs(listOf("resources")) |
| 25 | + } |
| 26 | + } |
| 27 | +} |
| 28 | + |
| 29 | +repositories { |
| 30 | + mavenLocal() |
| 31 | + mavenCentral() |
| 32 | + maven(url="https://kotlin.bintray.com/ktor") |
| 33 | + maven(url="https://jitpack.io") |
| 34 | +} |
| 35 | + |
| 36 | +val ktorVersion="1.6.4" |
| 37 | +val sqldelightVersion="1.5.3" |
| 38 | +val koinVersion="3.1.4" |
| 39 | +val kluentVersion="1.68" |
| 40 | +val kotlinVersion="1.5.31" |
| 41 | +val kotlinxSerialization="1.3.0" |
| 42 | +val logbackVersion="1.2.7" |
| 43 | + |
| 44 | +dependencies { |
| 45 | + implementation(kotlin("stdlib")) |
| 46 | + implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:$kotlinxSerialization") |
| 47 | + implementation("org.jetbrains.kotlinx:kotlinx-serialization-cbor:$kotlinxSerialization") |
| 48 | + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinxSerialization") |
| 49 | + implementation("org.json:json:20210307") // XML |
| 50 | + |
| 51 | + implementation("ch.qos.logback:logback-classic:$logbackVersion") |
| 52 | + |
| 53 | + implementation("com.londogard:summarize-kt:1.2.0") |
| 54 | + implementation("com.londogard:londogard-nlp-toolkit:1.0.0") |
| 55 | + implementation("com.londogard:text-gen-kt:1.1.0") |
| 56 | + implementation("com.londogard:fuzzy-match-kt:1.0.1") |
| 57 | + implementation("com.londogard:stokk:0.1.0") |
| 58 | + |
| 59 | + implementation("org.jetbrains:markdown:0.2.4") |
| 60 | + |
| 61 | + implementation("com.squareup.sqldelight:sqlite-driver:$sqldelightVersion") |
| 62 | + implementation("com.squareup.sqldelight:runtime-jvm:$sqldelightVersion") |
| 63 | + |
| 64 | + implementation("io.ktor:ktor-server-netty:$ktorVersion") |
| 65 | + implementation("io.ktor:ktor-server-core:$ktorVersion") |
| 66 | + implementation("io.ktor:ktor-html-builder:$ktorVersion") |
| 67 | + implementation("io.ktor:ktor-auth:$ktorVersion") |
| 68 | + implementation("io.ktor:ktor-auth-jwt:$ktorVersion") |
| 69 | + implementation("io.ktor:ktor-serialization:$ktorVersion") |
| 70 | + implementation("io.ktor:ktor-locations:$ktorVersion") |
| 71 | + |
| 72 | + implementation("io.ktor:ktor-client-core:$ktorVersion") |
| 73 | + implementation("io.ktor:ktor-client-cio:$ktorVersion") |
| 74 | + implementation("io.ktor:ktor-client-serialization:$ktorVersion") |
| 75 | + |
| 76 | + implementation("io.insert-koin:koin-ktor:$koinVersion") |
| 77 | + |
| 78 | + // implementation 'com.github.kwebio:kweb-core:0.8.9' |
| 79 | + |
| 80 | + implementation("org.boofcv:boofcv-core:0.39") |
| 81 | + implementation("org.boofcv:boofcv-kotlin:0.39") |
| 82 | + |
| 83 | + implementation("org.mindrot:jbcrypt:0.4") |
| 84 | + |
| 85 | + testImplementation("io.ktor:ktor-server-test-host:$ktorVersion") |
| 86 | + testImplementation("org.amshove.kluent:kluent:$kluentVersion") |
| 87 | +} |
| 88 | + |
| 89 | +sqldelight { |
| 90 | + database("Database") { |
| 91 | + packageName = "com.londogard" |
| 92 | + } |
| 93 | +} |
0 commit comments