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:36:12 UTC

[groovy] branch GROOVY_3_0_X 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 GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


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

commit 7844d6ed87c5cd4785f3640bd91f16e96af16bb5
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 f0ac3c4..e65bd9d 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')