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:
parent
3fe4b28bb0
commit
5c728b0f0c
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue