During IOC Test task GradleMain open a connection on port 443 https. Perhaps you have to check your firewall configuration to make sure your system allow this kind of connection.
François 2011/6/30 Chris Poulsen <[email protected]>: > Hi, > > Yeah, gradle reported the line of the error, so I figured it was related to > something like that. Its no biggie for me, I just thought you wanted to > know. > > I'm more concerned about the 5 failing ioc tests, any pointers on how to get > those tests going? > > -- > Chris > > On Thu, Jun 30, 2011 at 12:35 AM, Josh Canfield <[email protected]>wrote: > >> > *) Clean checkout, executing "gradle idea" fails, with some minus-set >> > operator being null or something. Doing "gradle install" first lets the >> > next"gradle idea" do its magic successfully. >> >> That's my bad. I wanted build/generated-sources not be excluded. >> >> ideaModule.doFirst { >> excludeDirs -= buildDir >> >> def generatedDir = file("$buildDir/generated-sources") >> >> def buildMinusGeneratedDir = (buildDir.listFiles() - generatedDir) >> as Set<File> >> >> excludeDirs += buildMinusGeneratedDir >> } >> >> Apparently since the build directory isn't created yet it's failing. I >> suppose the XML generated could be tweaked instead.... >> >> >> >> On Wed, Jun 29, 2011 at 3:20 PM, Chris Poulsen <[email protected]> >> wrote: >> > Hi, >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
