Вопрос

i am new to maven. I am trying to zip some content and put it in a desired location but while using the Assembly Plugin the zip file is getting created in the 'target' folder of my project. How can I save it in a desired location ??

Это было полезно?

Решение

please add below line to your pom.xml inside assembly plugin configuration

   <configuration>
      <outputDirectory>output/directory</outputDirectory>
    </configuration>

For outputDirectory set the path where you want save your zip file.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top