1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-doc.git synced 2025-04-25 12:07:10 -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>
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>
<dl class="dl-horizontal">
<dt>compile</dt>
<dd>Used to compile your project.</dd>
<dt>runtime</dt>
<dd>Not used at compile time but passed to the JVM to run your application.</dd>
<dt>provided</dt>
<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
(<code>"groupId:artifactId:"</code>).</dd>
</dl>
<h2 class="section" id="maven-repos">Maven repos</h2>
<h3 class="section" indent="1" id="maven-repos-unauthenticated">Unauthenticated repos</h3>