Updated to version 2.0.2

This commit is contained in:
Will Hedgecock 2018-04-03 11:58:57 -05:00
parent f2599ea973
commit 681dcc4278
3 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,7 @@
<section id="downloads">
<a class="zip_download_link" href="https://github.com/Fazecast/jSerialComm/zipball/master">Download this project as a .zip file</a>
<a class="tar_download_link" href="https://github.com/Fazecast/jSerialComm/tarball/master">Download this project as a tar.gz file</a>
<a class="jar_download_link" href="binaries/jSerialComm-2.0.0.jar">Download this library as a .jar file</a>
<a class="jar_download_link" href="binaries/jSerialComm-2.0.2.jar">Download this library as a .jar file</a>
</section>
</header>
</div>
@ -74,7 +74,7 @@
<h3><a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>How can use this library in my own project?</h3>
<p>One of the most convenient features of this library is that it allows you to simply include the <a href="binaries/jSerialComm-2.0.0.jar">JAR file</a> in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.</p>
<p>One of the most convenient features of this library is that it allows you to simply include the <a href="binaries/jSerialComm-2.0.2.jar">JAR file</a> in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.</p>
<p>To access the contents of the library in your project, make sure to <code>import com.fazecast.jSerialComm.*</code> into your java files. You can then generate a list of all available serial ports on your system (real or virtual), by calling the following static method:</p>
@ -103,25 +103,25 @@
<li><a href="#tabs-7">Leiningen</a></li>
</ul>
<div id="tabs-1">
<pre><code>&lt;dependency&gt;<br />&nbsp;&nbsp;&nbsp;&lt;groupId&gt;com.fazecast&lt;/groupId&gt;<br />&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;jSerialComm&lt;/artifactId&gt;<br />&nbsp;&nbsp;&nbsp;&lt;version&gt;2.0.0&lt;/version&gt;<br />&lt;/dependency&gt;</code></pre>
<pre><code>&lt;dependency&gt;<br />&nbsp;&nbsp;&nbsp;&lt;groupId&gt;com.fazecast&lt;/groupId&gt;<br />&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;jSerialComm&lt;/artifactId&gt;<br />&nbsp;&nbsp;&nbsp;&lt;version&gt;2.0.2&lt;/version&gt;<br />&lt;/dependency&gt;</code></pre>
</div>
<div id="tabs-2">
<pre><code>&lt;dependency org="com.fazecast" name="jSerialComm" rev="2.0.0"/&gt;</code></pre>
<pre><code>&lt;dependency org="com.fazecast" name="jSerialComm" rev="2.0.2"/&gt;</code></pre>
</div>
<div id="tabs-3">
<pre><code>@Grab(group='com.fazecast', module='jSerialComm', version='2.0.0')</code></pre>
<pre><code>@Grab(group='com.fazecast', module='jSerialComm', version='2.0.2')</code></pre>
</div>
<div id="tabs-4">
<pre><code>compile 'com.fazecast:jSerialComm:2.0.0'</code></pre>
<pre><code>compile 'com.fazecast:jSerialComm:2.0.2'</code></pre>
</div>
<div id="tabs-5">
<pre><code>compile.with 'com.fazecast:jSerialComm:jar:2.0.0'</code></pre>
<pre><code>compile.with 'com.fazecast:jSerialComm:jar:2.0.2'</code></pre>
</div>
<div id="tabs-6">
<pre><code>libraryDependencies += "com.fazecast" % "jSerialComm" % "2.0.0"</code></pre>
<pre><code>libraryDependencies += "com.fazecast" % "jSerialComm" % "2.0.2"</code></pre>
</div>
<div id="tabs-7">
<pre><code>[com.fazecast/jSerialComm "2.0.0"]</code></pre>
<pre><code>[com.fazecast/jSerialComm "2.0.2"]</code></pre>
</div>
</div>