1

I have a directory that contains several children-directories. These directories are being generated by maven assembly plugin. I want to generate the .properties file that contains smth like

module1.home=${.dir}/module1
module2.home=${.dir}/module2

and so on. So I want 1 line for each child-directory. I have a velocity template that describes content of the file. Which plugin can do it for me? Thanks a lot.

Vasilii Ruzov
  • 554
  • 1
  • 10
  • 27

1 Answers1

0

The velocity-maven-plugin do a great job at allowing you to run your Velocity templates during build.

Riduidel
  • 22,052
  • 14
  • 85
  • 185