I have the following problem: I'm trying to create a local cache for a maven repository that is hosted at a different site inside the same company. So I set up Artifactory OSS, created a couple remote repositories pointing at the off-site server and, generally speaking, everything works as expected, except for a couple of dependecies that are unusually large. Mind you they are not jars with a couple megabytes of compiled codes, but zip archives filled with image data. The largest one is 8gb on its own.
My gradle build fails every time, because my local Artifactory replies that the artifact does exist, tries to download it, and then causes a WebSocketTimeout. This does not happen, when I access the off-site server directly. When I uncheck "store locally" it works fine too, but that is the exact opposite of what I'm trying to achieve.
Any ideas?