From a1c9d3fc996a25757c0f1a6b65d3286719069528 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Mon, 10 Jun 2024 17:48:51 +0200 Subject: [PATCH] Not deploying aspectj tests --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 3190b3af14..e70271d10a 100644 --- a/build.gradle +++ b/build.gradle @@ -126,7 +126,7 @@ subprojects { javadoc { - if (project.name.contains('samples')) { + if (project.name.contains('samples') || project.name.contains("-test-aspectj")) { enabled = false } else { configure(options) { @@ -289,7 +289,7 @@ subprojects { } // Do not publish some modules - if (!['samples', 'benchmarks', 'micrometer-osgi-test', 'concurrency-tests'].find { project.name.contains(it) }) { + if (!['samples', 'benchmarks', 'micrometer-osgi-test', 'concurrency-tests', 'micrometer-test-aspectj-ctw', 'micrometer-test-aspectj-ltw'].find { project.name.contains(it) }) { apply plugin: 'com.netflix.nebula.maven-publish' apply plugin: 'com.netflix.nebula.maven-manifest' apply plugin: 'com.netflix.nebula.maven-developer'