user15425589
user15425589

Reputation:

Removing maven files from module

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

Answers (1)

nhu
nhu

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

Related Questions