Reputation:
Is it okay to remove the following two files from the package module:
mvnw
mvnw.cmd
Our project is dockerized in a network. Does this deletion affect the future deployment processes and what's the purpose of it?
Upvotes: 0
Views: 280
Reputation: 352
mvnw is the maven wrapper. It is useful if you need a specific version of maven to build your project or to be able to build it from a place where maven is not installed.
should not impact future deployment if you delete it.
Upvotes: 1