Archetypes - Fix deprecated use of maven project name

Fix the use of the deprecated maven key ${build.finalName}. Using ${project.build.finalName}
instead.
This commit is contained in:
Jose Luis Osorno
2019-10-18 08:20:31 +02:00
parent 56300e35aa
commit fba08f9ab7
3 changed files with 4 additions and 4 deletions

View File

@@ -110,7 +110,7 @@ do is modify the `pom.xml` file of the corresponding docker module / project in
<resource>
<directory>target</directory>
<includes>
<include>${build.finalName}.amp</include>
<include>${project.build.finalName}.amp</include>
</includes>
<filtering>false</filtering>
</resource>