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/02/19 12:34:59 UTC

[groovy] branch master updated: GROOVY-9410: Writable is not on classpath for compilation when using groovy-templates dependency directly

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


The following commit(s) were added to refs/heads/master by this push:
     new 35fcf2b  GROOVY-9410: Writable is not on classpath for compilation when using groovy-templates dependency directly
35fcf2b is described below

commit 35fcf2b24e7f99cb7033ccdf32141a19828e4166
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Feb 19 22:34:44 2020 +1000

    GROOVY-9410: Writable is not on classpath for compilation when using groovy-templates dependency directly
---
 subprojects/groovy-templates/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-templates/build.gradle b/subprojects/groovy-templates/build.gradle
index 8a877fd..5717f16 100644
--- a/subprojects/groovy-templates/build.gradle
+++ b/subprojects/groovy-templates/build.gradle
@@ -23,7 +23,7 @@ repositories {
 }
 
 dependencies {
-    implementation rootProject
+    api rootProject
     api project(':groovy-xml')
     testImplementation rootProject.sourceSets.test.runtimeClasspath
     testImplementation project(':groovy-test')