What is <scope> under <dependency> in pom.xml for?
https://stackoverflow.com/questions/26975818/what-is-scope-under-dependency-in-pom-xml-for
WebNov 17, 2014 · The <scope> element can take 6 values: compile, provided, runtime, test, system and import. 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.
DA: 73 PA: 94 MOZ Rank: 88