Rajitha Udayanga
Rajitha Udayanga

Reputation: 1732

mvnw: Permission denied on JHipster spring boot application

When I try to clone and run jHipster spring boot application using ./mvnw command, it getting an error mvnw: Permission denied. How can I solve it?

Upvotes: 8

Views: 11045

Answers (1)

Metin Bulak
Metin Bulak

Reputation: 727

if you use dockerfile, you should add chmod +x mvnw

RUN chmod +x mvnw

Upvotes: 9

Related Questions