Files
Firmament/buildSrc/build.gradle.kts
Linnea Gräf e098482faa Bump Kotlin version
[no changelog]
2024-04-01 01:47:15 +02:00

28 lines
523 B
Kotlin

// SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
//
// SPDX-License-Identifier: CC0-1.0
plugins {
kotlin("jvm") version "1.8.10"
`kotlin-dsl`
}
repositories {
mavenCentral()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.github.romangraef:neaslicenseextractificator:1.1.0")
implementation("com.google.code.gson:gson:2.10.1")
}
sourceSets {
main {
kotlin {
srcDir(file("src"))
}
}
}