We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Attempted build using Maven version 2.2.1 and received the following error: [see attached: compile-os4j302-maven221-error.txt]
[INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Error installing artifact: File /home/dorado/dev/repos/openstack4j/core/target/features.xml does not exist
Subsequent build using Maven version 3.3.9 successful. Suggest using maven-enforcer-plugin to stop/fail build if using less than Maven version 3.0?
maven-enforcer-plugin
Suggested addition to pom.xml:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.4.1</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.0</version> <message>Build FAILURE: Maven version 3.0+ REQUIRED!</message> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin>
The text was updated successfully, but these errors were encountered:
Issue ContainX#890 - Enforce build requirement of Maven version 3.0+
f2605a0
Hi @SeanRMunoz, Good point. Thanks for filing the issue and submitting the PR.
Sorry, something went wrong.
Merge pull request #891 from SeanRMunoz/master
59a8927
Issue #890 - Enforce build requirement of Maven version 3.0+
Merged. Thanks again. Can we close this issue @SeanRMunoz ?
Yes @auhlig this issue #890 has been resolved. Thank you.
No branches or pull requests
Attempted build using Maven version 2.2.1 and received the following error:
[see attached: compile-os4j302-maven221-error.txt]
Subsequent build using Maven version 3.3.9 successful. Suggest using
maven-enforcer-plugin
to stop/fail build if using less than Maven version 3.0?Suggested addition to pom.xml:
The text was updated successfully, but these errors were encountered: