I tried googling it, but couldn't find an answer:
We need to ship zip file containing an executable jar file (which is a small swing program that we wrote) to clients. We're not using any installer kit, simply packaging the executable jar and prop file in a zip file, which client will extract at a pre-defined location. Clients will deploy it on their machine at a given location. The program was built and tested on Java 1.8. We don't know if clients have the JRE already installed on their machine or even the capability to install it by themselves.
My question is: Can we also include the jre folder structure (from our machines where it was deployed using Java exe) in our zipped software, so it gets unpackaged on client machine and client can use this jre instead of learning how to install a new one? (My understanding, they might still need to add the JAVA_HOME to their windows classpath)