The company I work for has a process for submitting software for release that requires that the builds be able to be run ‘offline’. While in development I am using a proxied maven repository to maven central. What I would like to do is run a build on my development machine so it pulls down all of the third party artifacts from mavent central, then be able to ‘zip up’ those to give to our CM department so they can extract them to be able to build offline. The issue I have is that gradle has its own cache. So I can’t just point the build script to the local .m2 to resolve dependencies.
Is there a way I can ‘export’ the gradle cache to a maven repository so that I could zip up the artifacts for an offline build?