Well here's something I've not experienced before;...
# community-support
j
Well here's something I've not experienced before; I'm trying to "test" a source distribution zip. As part of that, I have a wrapper task in my gradle file that generates the missing wrapper files. Running
gradle wrapper
from my extracted source location, creates the wrapper. Here's the confusing part: If I have a shell script to do this step for me, the project attempts to build (and actually ignores the settings.gradle file indicating separate gralde projects so it fails to build). It doesn't generate the wrapper. Has anyone seen this before ?
FYI: This turned out to be an issue with earlier versions of gradle just not supporting includedBuilds. Creating a "bootstrap" project that people run to download the gradle wrapper, and then that project moving the wrapper into position was how I fixed this.