aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: d89c20e3a00f6fe2e7825112db7303a494676604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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"))
        }
    }
}