1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-doc.git synced 2025-04-25 20:07:11 -07:00

Reformat.

This commit is contained in:
Cedric Beust 2016-01-05 01:50:14 +04:00
parent 37c591f7f0
commit 8c7733bb93

View file

@ -271,16 +271,18 @@ dependencies {
<p> <p>
There are various kinds of dependencies: There are various kinds of dependencies:
</p> </p>
<ul> <dl class="dl-horizontal">
<li><strong>compile</strong>. Dependencies necessary to compile your project.</li> <dt>compile</dt>
<li><strong>runtime</strong>. These dependencies are not used at compile time but passed <dd>Used to compile your project.</dd>
to the JVM to run your application. </li> <dt>runtime</dt>
<li><strong>provided</strong>. These dependencies are used at compile time but not used to run <dd>Not used at compile time but passed to the JVM to run your application.</dd>
your application.</li> <dt>provided</dt>
<li><strong>excluded</strong>. These dependencies will be excluded from the classpath. You can either <dd>Used at compile time but not used to run your application.</dd>
<dt>excluded</dt>
<dd>Excluded from the classpath. You can either
specify a versioned id (e.g. <code>"groupId:artifactId:version"</code>) or a versionless one specify a versioned id (e.g. <code>"groupId:artifactId:version"</code>) or a versionless one
(<code>"groupId:artifactId:"</code>)</li> (<code>"groupId:artifactId:"</code>).</dd>
</ul> </dl>
<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>