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 22:07:48 UTC

[05/20] 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/ad3998d3
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/ad3998d3
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/ad3998d3

Branch: refs/heads/GROOVY_2_5_X
Commit: ad3998d320e465f0f37a49bf17ce6b2eab0f83c5
Parents: f62fd09
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 22:08:52 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/groovy/blob/ad3998d3/gradle/assemble.gradle
----------------------------------------------------------------------
diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle
index e70a189..ae574e5 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
     }