Well I gave it my best shot
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<id>process-remote-resources</id>
<goals>
<goal>process</goal>
</goals>
<configuration>
<resourceBundles>
<resourceBundle>dbs:commondb:${bully}</resourceBundle>
</resourceBundles>
<properties>
<bully>3</bully>
</properties>
</configuration>
</execution>
</executions>
</plugin>
It looks like the process goal has been abandoned and everyone is just
using maven-dependency-plugin's unpack-dependencies goal.
On Tue, 23 Feb 2021 at 13:34, Delany <[email protected]> wrote:
> I don't want to hardcode the version number of the remote project into
> this plugin config, so I've used a property made available in a parent pom.
> But it's not being resolved. What am I doing wrong?
>
> <plugin>
> <artifactId>maven-remote-resources-plugin</artifactId>
> <executions>
> <execution>
> <id>process-remote-resources</id>
> <goals>
> <goal>process</goal>
> </goals>
> <configuration>
> <resourceBundles>
>
> <resourceBundle>dbs:commondb:${dep.dbs.commondb}</resourceBundle>
> </resourceBundles>
> </configuration>
> </execution>
> </executions>
> </plugin>
>
> There's a mention of including a <properties> tag that is a map, but Im
> not sure what that should look like.
>
> https://maven.apache.org/plugins/maven-remote-resources-plugin/usage.html
>
> Thanks,
>