You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by cc...@apache.org on 2017/12/12 20:56:29 UTC

[08/19] groovy git commit: Fix generated resources missing from indy jar

Fix generated resources missing from indy jar


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/dd5a051a
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/dd5a051a
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/dd5a051a

Branch: refs/heads/GROOVY_2_6_X
Commit: dd5a051a04145b003878662c990e0518c2358912
Parents: f4baa7a
Author: Cedric Champeau <cc...@apache.org>
Authored: Mon Dec 11 10:24:12 2017 +0100
Committer: Cedric Champeau <cc...@apache.org>
Committed: Tue Dec 12 21:55:47 2017 +0100

----------------------------------------------------------------------
 gradle/assemble.gradle | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/dd5a051a/gradle/assemble.gradle
----------------------------------------------------------------------
diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle
index 836659a..0d6bd78 100644
--- a/gradle/assemble.gradle
+++ b/gradle/assemble.gradle
@@ -144,6 +144,7 @@ allprojects {
             appendix = 'raw'
             from sourceSets.main.java.outputDir
             from compileGroovyWithIndy.destinationDir
+            from "${project.buildDir}/resources/main"
         }
         producedJars << jarWithIndy
     }