// SPDX-FileCopyrightText: 2023 Linnea Gräf // // 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")) } } }