vertx-maven-plugin
vertx-maven-plugin copied to clipboard
cannot use property as moduleName
I'm defining my module name as property in my pom, using the project-name and project-version:
<vertx-mod-name>jbt.${project.name}-v${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</vertx-mod-name>
If I now use the above property as moduleName,
<plugin>
<groupId>org.anacoders.plugins</groupId>
<artifactId>vertx-maven-plugin</artifactId>
<version>1.3.0.1</version>
<configuration>
<moduleName>${vertx-mod-name}</moduleName>
</configuration>
</plugin>
vertx-maven-plugin wont substitute it but use it literally:
Launching module [jbt.vertx-test-v${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}]
Sorry only now seeing this, for some reason I didnt get a notification.