Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jun 15, 2023
1 parent a307e85 commit a0d6710
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/main/java/com/jcabi/mysql/maven/plugin/ClassifyMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,16 @@ public final class ClassifyMojo extends AbstractMojo {
* <p>This may be useful when your platform doesn't detect correctly (it may happen).
* In this case you may either specify the classifier explicitly for the
* maven-dependency-plugin, or use this mechanism of mappings. Each mapping
* must be formatted as "from->to", for example "i386->x86". When the platform
* is detected as "i386", it will be changed to "x86". You can specify
* must be formatted as "from to" (with a space inside),
* for example "linux-i386 linux-x86". When the platform
* is detected as "linux-i386", it will be changed to "linux-x86". You can specify
* multiple mappings, for example:</p>
*
* <pre>
* &lt;configuration&gt;
* &lt;mappings&gt;
* &lt;mapping&gt;i386-&gt;x86&lt;/mapping&gt;
* &lt;mapping&gt;amd64-&gt;x86_64&lt;/mapping&gt;
* &lt;mapping&gt;linux-i386 linux-x86&lt;/mapping&gt;
* &lt;mapping&gt;linux-amd64 linux-x86_64&lt;/mapping&gt;
* &lt;/mappings&gt;
* &lt;/configuration&gt;
* </pre>
Expand All @@ -98,7 +99,7 @@ public final class ClassifyMojo extends AbstractMojo {
* <pre>
* &lt;configuration&gt;
* &lt;mappings&gt;
* &lt;mapping&gt;i386-&gt;x86&lt;/mapping&gt;
* &lt;mapping&gt;linux-i386 linux-x86&lt;/mapping&gt;
* &lt;/mappings&gt;
* &lt;/configuration&gt;
* </pre>
Expand Down

0 comments on commit a0d6710

Please sign in to comment.