I have developed a simple Java application as an assignment. There is a next step to this assignment, which I do not understand clearly.
- Develop a script to deploy both client and server in automated way
When you say "develop a script to deploy" in Java, does it mean to create a script that builds executable .jar file from your package? Or does it mean to actually have my application somewhere in the web so everyone can access it? What exactly does automated deployment mean in general when it comes to Java?
.bat,.sh, .. command line scripts (not in java). The goal of "deploy" is that it can be run by some user, the question is from which state that should happen.. based on a downloaded .jar or source repository, ...