mirror of
https://github.com/ethauvin/kobalt-doc.git
synced 2025-04-25 20:07:11 -07:00
Document excluded and other dependencies.
This commit is contained in:
parent
a18819ce4c
commit
c37cf30c48
1 changed files with 15 additions and 0 deletions
|
@ -267,6 +267,21 @@ dependencies {
|
||||||
compile(file("libs/async-http.jar"))
|
compile(file("libs/async-http.jar"))
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
There are various kinds of dependencies:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><strong>compile</strong>. Dependencies necessary to compile your project.</li>
|
||||||
|
<li><strong>runtime</strong>. These dependencies are not used at compile time but passed
|
||||||
|
to the JVM to run your application. </li>
|
||||||
|
<li><strong>provided</strong>. These dependencies are used at compile time but not used to run
|
||||||
|
your application.</li>
|
||||||
|
<li><strong>excluded</strong>. These dependencies will be excluded from the classpath. You can either
|
||||||
|
specify a versioned id (e.g. <code>"groupId:artifactId:version"</code>) or a versionless one
|
||||||
|
(<code>"groupId:artifactId:"</code>)</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h2 class="section" id="maven-repos">Maven repos</h2>
|
<h2 class="section" id="maven-repos">Maven repos</h2>
|
||||||
<h3 class="section" indent="1" id="maven-repos-unauthenticated">Unauthenticated repos</h3>
|
<h3 class="section" indent="1" id="maven-repos-unauthenticated">Unauthenticated repos</h3>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue