This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-wrapper.git
The following commit(s) were added to refs/heads/master by this push:
new 18e1a3f fix configuration for Maven 3.2.x
18e1a3f is described below
commit 18e1a3f92d798c260149298b70e7482337992366
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Wed Dec 8 23:29:43 2021 +0100
fix configuration for Maven 3.2.x
---
maven-wrapper/pom.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/maven-wrapper/pom.xml b/maven-wrapper/pom.xml
index 28682cc..667d4d0 100644
--- a/maven-wrapper/pom.xml
+++ b/maven-wrapper/pom.xml
@@ -80,6 +80,7 @@ under the License.
<build>
<plugins>
<plugin>
+ <!-- should be removed after switch to java 8 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
@@ -92,7 +93,9 @@ under the License.
<rules>
<enforceBytecodeVersion>
<maxJdkVersion>${maven.compiler.target}</maxJdkVersion>
- <ignoredScopes>test</ignoredScopes>
+ <ignoredScopes>
+ <ignoredScope>test</ignoredScope>
+ </ignoredScopes>
</enforceBytecodeVersion>
</rules>
<fail>true</fail>