fancydialogs: Add api module

This commit is contained in:
Oliver
2025-05-15 18:47:49 +02:00
committed by Oliver
parent f2da8fb4fa
commit 4d8e244110
3 changed files with 97 additions and 19 deletions

View File

@@ -19,29 +19,31 @@ val supportedVersions =
"1.21.5",
)
//allprojects {
// group = "de.oliver"
// version = getFDVersion()
// description = "Simple, lightweight and fast dialog plugin using the new dialog feature"
//
// repositories {
// mavenLocal()
// mavenCentral()
//
// maven(url = "https://repo.papermc.io/repository/maven-public/")
// maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
//
// maven(url = "https://repo.fancyinnovations.com/snapshots")
// maven(url = "https://repo.fancyinnovations.com/releases")
// maven(url = "https://repo.lushplugins.org/releases")
// maven(url = "https://repo.viaversion.com/")
// maven(url = "https://repo.opencollab.dev/main/")
// }
//}
allprojects {
group = "de.oliver"
version = getFDVersion()
description = "Simple, lightweight and fast dialog plugin using the new dialog feature"
repositories {
mavenLocal()
mavenCentral()
maven(url = "https://repo.papermc.io/repository/maven-public/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven(url = "https://repo.fancyinnovations.com/snapshots")
maven(url = "https://repo.fancyinnovations.com/releases")
maven(url = "https://repo.lushplugins.org/releases")
maven(url = "https://repo.viaversion.com/")
maven(url = "https://repo.opencollab.dev/main/")
}
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.21.5-R0.1-SNAPSHOT")
implementation(project(":plugins:fancydialogs:api"))
rootProject.subprojects
.filter { it.path.startsWith(":libraries:packets:implementations") }
.forEach { implementation(project(it.path)) }