Does gradle fit to my needs?

Hey,

I am working on a project written in c++ and java in a closed network (with absolutely no access to the internet) and code that needs to be run on 32 bit jvm (and cpp code that assumes 32 bit machines) as well as 64 bit code.
2 concerns I had regarding using gradle:

  1. Will it work properly on 32 bit machines as well as 64 bit?
  2. Can I initialize the gradle server in the closed network without connecting to the internet? (not even a single connection).

Thanks,
Gal

What do you mean with “gradle server”? There is no gradle server. Do you mean a repository server like artifactory / nexus? You can declare dependencies using a plain file system. That way you wouldn’t need a network connection to work. Alternatively you can setup an internal repository server.

cheers,
René