I want a dependency to be resolved with no version. Maven 3 is forcing me to use a version, I can't provide a version for the system scope jar I'm resolving. Thanks.
相关问题
- Maven Repositories for Spring Roo
- What is the best way to externalize properties in
- Export Maven dependencies and maintain repository
- Cannot execute Groovy Maven Plugin as a goal
- How to configure the Maven dependency for Guice 3.
相关文章
- Find Java options used by Maven
- Send Maven output to console and log file using po
- dependencyManagement in parent ignored
- Why can't I find my settings.xml under ~/.m2?
- Maven execute a goal on build fail / FindBugs
- Run Eclipse with M2 Maven build ignores “Store met
- maven assembly plugin dependencySet with transitiv
- Creating Maven Archetype: is there a way to specif
You can use a system property define as below to resolve dependency.
You also have the option to provide Dependency Version Ranges. You might want to do is something like
<version>[1.2.3,)</version>