mirror of
https://github.com/TeamMidnightDust/MidnightControls.git
synced 2025-12-13 15:25:08 +01:00
22 lines
512 B
Groovy
22 lines
512 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
archivesBaseName = project.archives_base_name + "-elytra"
|
|
|
|
repositories {
|
|
maven { url = 'https://hub.spigotmc.org/nexus/content/groups/public/' }
|
|
maven { url = 'https://mcelytra.github.io/maven/' }
|
|
maven { url = 'https://libraries.minecraft.net/' }
|
|
}
|
|
|
|
dependencies {
|
|
api project(":core")
|
|
implementation "org.mcelytra:elytra-core:1.0.0-SNAPSHOT"
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|