From e483466bbd3a54562101173c93fae946fc8c2199 Mon Sep 17 00:00:00 2001 From: Sherwin Price Date: Thu, 5 Feb 2026 22:22:26 -0500 Subject: [PATCH] add aspectj --- lib/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/build.gradle b/lib/build.gradle index eb5e303..1d85333 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -5,8 +5,11 @@ plugins { // Apply the java-library plugin for API and implementation separation. id 'java' id 'application' + id("io.freefair.aspectj") version "9.2.0" // Check the latest version on the plugin website id("org.owasp.dependencycheck") version "12.2.0" + + } java { @@ -39,7 +42,7 @@ repositories { } dependencies { - + implementation("org.aspectj:aspectjrt:1.9.25") } jar {