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

@@ -0,0 +1,75 @@
plugins {
id("java-library")
id("maven-publish")
id("com.gradleup.shadow")
}
val minecraftVersion = "1.21.5"
dependencies {
compileOnly("io.papermc.paper:paper-api:$minecraftVersion-R0.1-SNAPSHOT")
compileOnly(project(":libraries:common"))
compileOnly("de.oliver.FancyAnalytics:logger:0.0.6")
implementation("org.lushplugins:ChatColorHandler:5.1.3")
}
tasks {
shadowJar {
relocate("org.lushplugins.chatcolorhandler", "com.fancyinnovations.fancydialogs.libs.chatcolorhandler")
archiveClassifier.set("")
}
publishing {
repositories {
maven {
name = "fancyinnovationsReleases"
url = uri("https://repo.fancyinnovations.com/releases")
credentials(PasswordCredentials::class)
authentication {
isAllowInsecureProtocol = true
create<BasicAuthentication>("basic")
}
}
maven {
name = "fancyinnovationsSnapshots"
url = uri("https://repo.fancyinnovations.com/snapshots")
credentials(PasswordCredentials::class)
authentication {
isAllowInsecureProtocol = true
create<BasicAuthentication>("basic")
}
}
}
publications {
create<MavenPublication>("maven") {
groupId = "de.oliver"
artifactId = "FancyHolograms"
version = getFDVersion()
from(project.components["java"])
}
}
}
java {
withSourcesJar()
withJavadocJar()
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
}
fun getFDVersion(): String {
return file("../VERSION").readText()
}

View File

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

View File

@@ -30,6 +30,7 @@ include(":plugins:fancyholograms:implementation_1_19_4")
include(":plugins:fancyvisuals") include(":plugins:fancyvisuals")
include(":plugins:fancydialogs") include(":plugins:fancydialogs")
include(":plugins:fancydialogs:api")
include(":libraries:common") include(":libraries:common")
include(":libraries:jdb") include(":libraries:jdb")