You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/10/12 13:15:25 UTC

[groovy] 03/03: remove unnecessary dependency

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit c4e62b32971d6db15a6af87d0f336f96f99f258a
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Oct 12 23:14:52 2020 +1000

    remove unnecessary dependency
---
 subprojects/groovy-cli-picocli/build.gradle | 1 -
 subprojects/groovy-jmx/build.gradle         | 1 -
 2 files changed, 2 deletions(-)

diff --git a/subprojects/groovy-cli-picocli/build.gradle b/subprojects/groovy-cli-picocli/build.gradle
index c323d04..4892590 100644
--- a/subprojects/groovy-cli-picocli/build.gradle
+++ b/subprojects/groovy-cli-picocli/build.gradle
@@ -23,7 +23,6 @@ plugins {
 dependencies {
     api rootProject   // CliBuilder uses Option...
     implementation "info.picocli:picocli:${versions.picocli}"
-    testImplementation testFixtures(project(":"))
     testImplementation project(':groovy-test')
     testImplementation project(':groovy-dateutil')
 }
diff --git a/subprojects/groovy-jmx/build.gradle b/subprojects/groovy-jmx/build.gradle
index 66bc818..92743ab 100644
--- a/subprojects/groovy-jmx/build.gradle
+++ b/subprojects/groovy-jmx/build.gradle
@@ -23,7 +23,6 @@ plugins {
 dependencies {
     api rootProject // JmxBuilder extends FactoryBuilderSupport...
     testImplementation project(':groovy-test')
-    testImplementation testFixtures(project(":"))
     testRuntimeOnly("org.apache.ivy:ivy:${versions.ivy}") {
         transitive = false
     }