25 lines
387 B
Plaintext
25 lines
387 B
Plaintext
|
|
plugins {
|
|
id("java")
|
|
}
|
|
|
|
allprojects {
|
|
group = "com.alttd.datalock"
|
|
version = "1.2.0-SNAPSHOT"
|
|
description = "Altitude DataLock Library."
|
|
}
|
|
|
|
subprojects {
|
|
apply(plugin = "java-library")
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:26.2.build.+")
|
|
}
|
|
|
|
tasks {
|
|
jar {
|
|
from(sourceSets.main.get().output)
|
|
}
|
|
}
|
|
}
|