blob: 1b2542b299c86c2b88ca08cda1e32b78f45d6929 (
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
28
29
|
// SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
//
// SPDX-License-Identifier: CC0-1.0
plugins {
kotlin("jvm") version "2.1.0"
`kotlin-dsl`
}
repositories {
mavenCentral()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.github.romangraef:neaslicenseextractificator:1.1.0")
api("com.gradleup.shadow:shadow-gradle-plugin:9.0.0-rc1")
implementation("net.fabricmc:access-widener:2.1.0")
implementation("com.google.code.gson:gson:2.10.1")
}
sourceSets {
main {
kotlin {
srcDir(file("src"))
}
}
}
|