Skip to content
Advertisement

Using maven archetype template variables inside javascript files

I’m creating a Maven archetype that includes a javascript file. I would like to use the ${package} and ${artifactId} template variables inside my javascript file. Is this possible?

When I then generate a project from the archetype, the javascript file still includes the ${package} rather than the value of package.

Here is the relevant part of my archetype-metadata.xml

JavaScript

Advertisement

Answer

You need to set filtered to true on the fileSet.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement