HBASE-17286 Add goal to remote-resources plugin

With Apache parent pom v12 our remote-resources-plugin execution id was
shadowing the parent declaration, and our configuration would get run to
aggregate LICENSE files correctly. When upgrading to v18, apache changed
the execution id, so our configuration no longer gets used.

Add an explicit goal to our usage of the remote-resources-plugin and
change the name to something more descriptive and less likely to
conflict (either intentionally or not).

Signed-off-by: Josh Elser <elserj@apache.org>
This commit is contained in:
Mike Drob 2017-05-18 15:19:21 -07:00 committed by Josh Elser
parent 3fe4b28bb0
commit 5c728b0f0c
2 changed files with 8 additions and 2 deletions

View File

@ -44,7 +44,10 @@
<version>1.5</version>
<executions>
<execution>
<id>default</id>
<id>aggregate-licenses</id>
<goals>
<goal>process</goal>
</goals>
<configuration>
<properties>
<copyright-end-year>${build.year}</copyright-end-year>

View File

@ -72,7 +72,10 @@
<version>1.5</version>
<executions>
<execution>
<id>default</id>
<id>aggregate-licenses</id>
<goals>
<goal>process</goal>
</goals>
<configuration>
<properties>
<copyright-end-year>${build.year}</copyright-end-year>