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

Clarifications.

This commit is contained in:
Cedric Beust 2016-03-27 18:35:44 -07:00
parent c1771bb98f
commit a46d28a420

View file

@ -241,7 +241,7 @@ Kobalt lets you specify Maven coordinates in one line, such as <code>"org.testng
<p> <p>
The standard format for such coordinates, as explained in the link above, is: The standard format for such coordinates, as explained in the link above, is:
</p> </p>
<pre> <pre class="brush:plain">
groupId:artifactId:packaging:classifier:version</pre> groupId:artifactId:packaging:classifier:version</pre>
<p> <p>
<code>packaging</code> and <code>classifier</code> are optional and can be omitted. If <code>version</code> <code>packaging</code> and <code>classifier</code> are optional and can be omitted. If <code>version</code>
@ -252,9 +252,10 @@ groupId:artifactId:packaging:classifier:version</pre>
<p> <p>
For example, here is a Maven coordinate specifying a classifier: For example, here is a Maven coordinate specifying a classifier:
</p> </p>
<pre> <pre class="brush:plain">
# No version, resolves to the latest # No version, resolves to the latest
org.testng:testng: org.testng:testng:
# Specifies an extension and a qualifier # Specifies an extension and a qualifier
com.badlogicgames.gdx:gdx-platform:jar:natives-desktop:1.9.2</pre> com.badlogicgames.gdx:gdx-platform:jar:natives-desktop:1.9.2</pre>