common plugin extend common

This commit is contained in:
2025-09-09 09:40:47 +02:00
parent 168d6f480a
commit 685a9b2aac

View File

@@ -8,12 +8,19 @@ ktlint = "12.3.0"
# lulz plugin # lulz plugin
lulzCore = "0.1.0" lulzCore = "0.1.0"
lulzCommon = "0.1.0-SNAPSHOT"
[libraries] [libraries]
# plugin core dependencies # plugin core dependencies
jgit = { group = "org.eclipse.jgit", name = "org.eclipse.jgit", version = "7.3.0.202506031305-r" } jgit = { group = "org.eclipse.jgit", name = "org.eclipse.jgit", version = "7.3.0.202506031305-r" }
# plugin common dependencies
plugin-core = { group = "ltd.lulz.plugin", name = "core-plugin", version.ref = "lulzCore" }
plugin-detekt = { group = "io.gitlab.arturbosch.detekt", name = "detekt-gradle-plugin", version.ref = "detekt" }
plugin-kotlin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlin" }
plugin-ktlint = { group = "org.jlleitschuh.gradle", name = "ktlint-gradle", version.ref = "ktlint" }
# third party # third party
# third party testing # third party testing
@@ -32,3 +39,8 @@ kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
# lulz # lulz
core = { id = "ltd.lulz.plugin.core-plugin", version.ref = "lulzCore" } core = { id = "ltd.lulz.plugin.core-plugin", version.ref = "lulzCore" }
common = { id = "ltd.lulz.plugin.common-plugin.common", version.ref = "lulzCommon" }
common-build = { id = "ltd.lulz.plugin.common-plugin.common-build", version.ref = "lulzCommon" }
common-detekt = { id = "ltd.lulz.plugin.common-plugin.common-detekt", version.ref = "lulzCommon" }
common-ktlint = { id = "ltd.lulz.plugin.common-plugin.common-ktlint", version.ref = "lulzCommon" }
common-project = { id = "ltd.lulz.plugin.common-plugin.common-project", version.ref = "lulzCommon" }