diff options
author | Pauline <git@ethanlibs.co> | 2025-02-26 16:29:35 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-03-08 16:01:00 +0100 |
commit | d176e0a52e68ee7ee7a4b66feef9874fb954243b (patch) | |
tree | a411c5b5719893a456d34339cb6cea29a7d0ff93 /build.gradle.kts | |
parent | 145fff6a59f0f58305d6c057e97f2a1d6c958744 (diff) | |
download | Firmament-d176e0a52e68ee7ee7a4b66feef9874fb954243b.tar.gz Firmament-d176e0a52e68ee7ee7a4b66feef9874fb954243b.tar.bz2 Firmament-d176e0a52e68ee7ee7a4b66feef9874fb954243b.zip |
✨ feature(jade): add initial work on jade plugin :3
Signed-off-by: Pauline <git@ethanlibs.co>
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 6c17883..ef24d5e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -229,6 +229,7 @@ val yaclSourceSet = createIsolatedSourceSet("yacl") val explosiveEnhancementSourceSet = createIsolatedSourceSet("explosiveEnhancement", isEnabled = false) // TODO: wait for their port val wildfireGenderSourceSet = createIsolatedSourceSet("wildfireGender") +val jadeSourceSet = createIsolatedSourceSet("jade") val modmenuSourceSet = createIsolatedSourceSet("modmenu") val reiSourceSet = createIsolatedSourceSet("rei") val moulconfigSourceSet = createIsolatedSourceSet("moulconfig") @@ -253,8 +254,8 @@ dependencies { (explosiveEnhancementSourceSet.modImplementationConfigurationName)(libs.explosiveenhancement) modImplementation(libs.hypixelmodapi) include(libs.hypixelmodapi.fabric) - compileOnly(project(":javaplugin")) - annotationProcessor(project(":javaplugin")) + compileOnly(projects.javaplugin) + annotationProcessor(projects.javaplugin) implementation("com.google.auto.service:auto-service-annotations:1.1.1") ksp("dev.zacsweers.autoservice:auto-service-ksp:1.2.0") include(libs.manninghamMills) @@ -278,6 +279,7 @@ dependencies { (wildfireGenderSourceSet.implementationConfigurationName)(customTexturesSourceSet.output) (configuredSourceSet.modImplementationConfigurationName)(libs.configured) (sodiumSourceSet.modImplementationConfigurationName)(libs.sodium) + (jadeSourceSet.modImplementationConfigurationName)(libs.jade) (citResewnSourceSet.modImplementationConfigurationName)( innerJarsOf("citresewn", dependencies.create(libs.citresewn.get())) @@ -315,8 +317,8 @@ dependencies { testImplementation("io.kotest:kotest-runner-junit5:6.0.0.M1") testAgent(project(":testagent", configuration = "shadow")) - implementation(project(":symbols")) - ksp(project(":symbols")) + implementation(projects.symbols) + ksp(projects.symbols) } loom { |