You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2022/07/20 12:02:53 UTC

[maven-remote-resources-plugin] 01/01: Fix site "usage" page

This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch fix-site
in repository https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git

commit 654f45b391fbbd9dfedbbf4d66695597fe8c7936
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Jul 20 14:02:15 2022 +0200

    Fix site "usage" page
    
    The property was removed as there was onlyu one usage of
    it in POM, and I was unaware it is also used in documentation.
---
 pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 9bf6edd..37c9163 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,6 +71,9 @@ under the License.
     <javaVersion>7</javaVersion>
     <mavenVersion>3.2.5</mavenVersion>
     <project.build.outputTimestamp>2022-07-17T16:33:17Z</project.build.outputTimestamp>
+
+    <!-- Used by site documentation as well, do not remove -->
+    <mavenFilteringVersion>3.2.0</mavenFilteringVersion>
   </properties>
 
   <dependencies>
@@ -131,7 +134,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-filtering</artifactId>
-      <version>3.2.0</version>
+      <version>${mavenFilteringVersion}</version>
     </dependency>
 
     <!-- plexus -->