-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extension #196
Comments
@delanym do you think about: It is not a report goal so should be in plugins sections not reporting |
I didn't test your case but afraid that can be complicated project pom in evaluated and properties are resolved at the beginning plugins, reports are executed after parsing |
I tried configuring this in build section but the property is not resolved in the license for the site <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>year</id>
<goals>
<goal>timestamp-property</goal>
</goals>
<phase>validate</phase>
<configuration>
<name>build.year</name>
<pattern>yyyy</pattern>
<locale>en_ZA</locale>
</configuration>
</execution>
</executions>
</plugin> |
I'm trying to set a property for the year to use in the license
Its not working, and I noticed the plugin has no extension ability
Half the stated goals https://www.mojohaus.org/build-helper-maven-plugin/
would not change in a session and need only be run once.
Can this ability be added?
The text was updated successfully, but these errors were encountered: