mirror of
https://github.com/TeamMidnightDust/MidnightControls.git
synced 2025-12-13 23:25:10 +01:00
18 lines
409 B
Groovy
18 lines
409 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
archivesBaseName = project.archives_base_name + "-core"
|
|
|
|
dependencies {
|
|
api "org.jetbrains:annotations:17.0.0"
|
|
api "org.aperlambda:lambdajcommon:1.8.0"
|
|
api "com.electronwill.night-config:core:3.5.3"
|
|
api "com.electronwill.night-config:toml:3.5.3"
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|