mirror of
https://github.com/ethauvin/kobalt-doc.git
synced 2025-04-26 04:17:11 -07:00
Document compileOptional.
This commit is contained in:
parent
fe3c7ffcbe
commit
dede69f0b2
1 changed files with 12 additions and 10 deletions
|
@ -261,15 +261,17 @@ com.badlogicgames.gdx:gdx-platform:jar:natives-desktop:1.9.2</pre>
|
|||
</p>
|
||||
<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>
|
||||
<dd>Compilation dependency.</dd>
|
||||
<dt>compileOptional</dt>
|
||||
<dd>Optional compilation dependency.</dd>
|
||||
<dt>exclude</dt>
|
||||
<dd>Exclude the given dependencies 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>
|
||||
<dt>provided</dt>
|
||||
<dd>Used at compile time but not used to run your application.</dd>
|
||||
<dt>runtime</dt>
|
||||
<dd>Not used at compile time but passed to the JVM to run your application.</dd>
|
||||
<dt>native</dt>
|
||||
<dd>Used to define native dependencies.</dd>
|
||||
</dl>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue