From 1232c02c8e2fb810efd49ee36694da4daaa5fde2 Mon Sep 17 00:00:00 2001 From: RednedEpic Date: Sat, 19 Mar 2022 21:13:37 -0500 Subject: [PATCH] Do not compile ap into jar --- core/build.gradle.kts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 28490a3af..da1a6cd3e 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -1,8 +1,6 @@ import net.kyori.indra.git.IndraGitExtension import net.kyori.blossom.BlossomExtension -import java.io.ByteArrayOutputStream - plugins { id("net.kyori.blossom") id("net.kyori.indra.git") @@ -74,7 +72,7 @@ dependencies { testImplementation("junit", "junit", Versions.junitVersion) // Annotation Processors - api(projects.ap) + compileOnly(projects.ap) annotationProcessor(projects.ap) }