I have build.gradle
in front of me and there are some dependencies declared as provided
but in documentation I do not see this dependency scope.
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.2.4.RELEASE")
....
provided 'backport-util-concurrent:backport-util-concurrent:3.1'
provided 'org.javolution:javolution:5.5.1@jar
....
}
Is this provided by a plugin? If so how do I found out which plugin this belongs to?
What is the difference between provided
and runtime
dependency scope in Gradle?
Suppose that a
jar
is needed to compile your code, but the jar is present in the production environment library collection. Then you don't need to package the jar with your project archives. To support this requirement, Maven has a scope namedprovided
. If you declare any jar dependency asprovided
, then this jar will be present in your classpath during compilation but will not be packaged with your project archive.provided
scope is very useful, particularly in web applications. For example,servlet-api.jar
is needed to be present in your classpath to compile your project, but you don't need this to packageservlet-api.jar
file with yourwar
. Withprovided
scope one can achieve this requirement.There is no Scope defined in Gradle
java
plugin namedprovided
. Also not inwar
orandroid
plugins. If you want to useprovided
scope in your project, then you have to define it in yourbuild.gradle
file. Following is the code snippet to declareprovided
scope in gradle:Now, your second question:
To answer this question first I will define
compile
dependency.compile
dependencies are dependencies, those are necessary to compile your code. Now imagine that if your code uses a library namedX
then you must declareX
as your compile-time dependency. Also imagine thatX
uses another libraryY
internally, and you declaredY
as your runtime dependency.During compilation, Gradle will add
X
into your classpath but will not addY
. Since,Y
is not required for compilation. But it will package bothX
andY
with your project archive since bothX
andY
are necessary to run your project archive in the production environment. Generally, all the dependencies needed in the production environment are known asruntime
dependency.In Gradle official documentation, it says that
runtime
dependency are "the dependencies required by the production classes at runtime. By default, also includes the compile time dependencies.".Now, if you've read this far, then you already know that
provided
is acompile
dependency that we don't want to be present in theruntime
dependency (basically, we don't want it to package with the project archive).Following is an illustration of
provided
andruntime
scope. Here,compile
refers to the dependencies that are required to compile the project andnon-compile
refers to the dependencies that are not required for project compilation.