New repo for issues

This commit is contained in:
Jilling Kingma
2022-03-11 11:29:34 +01:00
commit 480e4e3921
123 changed files with 2330 additions and 0 deletions

38
build.gradle.kts Normal file
View File

@@ -0,0 +1,38 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.5.31"
application
kotlin("plugin.serialization") version "1.5.31"
}
group = "me.jilling"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
val ktor_version = "1.6.7"
dependencies {
testImplementation(kotlin("test"))
implementation("org.jetbrains.kotlin:kotlin-script-runtime:1.5.31")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.1")
implementation("io.ktor:ktor-client-core:$ktor_version")
implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-serialization:$ktor_version")
implementation("org.json:json:20200518")
implementation("org.apache.commons:commons-csv:1.5")
}
tasks.test {
useJUnit()
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "11"
}
application {
mainClassName = "MainKt"
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,2 @@
5
0

Some files were not shown because too many files have changed in this diff Show More