From 11312c280743b3f923c2bc48ea16e227e44457d6 Mon Sep 17 00:00:00 2001 From: JesseBrault0709 <62299747+JesseBrault0709@users.noreply.github.com> Date: Mon, 13 May 2024 14:14:21 +0200 Subject: [PATCH] Groowt-all and fp. --- build.gradle | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/build.gradle b/build.gradle index ba31d42..dace193 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,8 @@ plugins { id 'groowt-conventions' + id 'groowt-testing' + id 'groowt-logging' + id 'groowt-publish' id 'java-library' } @@ -8,3 +11,16 @@ dependencies { compileOnlyApi libs.jetbrains.anotations implementation libs.slf4j.api, libs.groovy } + +jar { + archiveBaseName = 'groowt-util-di' +} + +publishing { + publications { + create('di', MavenPublication) { + artifactId = 'groowt-util-di' + from components.java + } + } +}