Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple Dependency Scopes in POM

I have a dependency in my POM that needs to be set to "provided" so it is not included at compilation, but it can still be referenced within my project. I would like the same dependency to have a scope of "test" when I go to run tests so I do not have to manually add the jar to my classpath. Is there a way to do this or achieve similar results?

Reasoning behind this is that I have some common jars that are provided in my JBOSS lib directory, so I want to use these and keep the "provided" scope of them for the war that is built. However, when I run JUnits from the command line, I want to use the jar from the repository without manually adding it to my classpath.

Thanks in Advance

like image 959
Steve Avatar asked May 09 '11 18:05

Steve


People also ask

What are the different scopes for Maven dependency?

Maven provides six scopes i.e. compile , provided , runtime , test , system , and import .

Does Maven support different dependency scopes?

Maven has six default dependency scopes. And it's important to understand that each scope — except for import — has an impact on transitive dependencies.

What is scope in dependency in POM XML?

This scope is used to limit the transitivity of a dependency, and also to affect the classpath used for various build tasks. compile. This is the default scope, used if none is specified. Compile dependencies are available in all classpaths of a project.


1 Answers

From maven documentation:

provided This is much like compile, but indicates you expect the JDK or a container to provide the dependency at runtime. For example, when building a web application for the Java Enterprise Edition, you would set the dependency on the Servlet API and related Java EE APIs to scope provided because the web container provides those classes. This scope is only available on the compilation and test classpath, and is not transitive.

I checked this works for me in maven 3.0.3. Had the same issue that i needed to have a servlet dependency while compilation and test but not compiled in because it ships with the application server distribution.

like image 178
fyr Avatar answered Oct 01 '22 15:10

fyr