Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch JSSC version to an updated fork #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ As software that uses a serial port, usability from Maven was a challenge. The s
library, RxTx, but neither it nor JavaComm are usable from Maven, as they have setup procedures that involve adding
files into the JRE on the target platform. See [Serial Java][14] for more details.

The solution is a relatively new library called [Java Simple Serial Connector][15] (jSSC). While the future development
of the library is unclear, it has a release on Maven Central that allows cross platform serial port access without any
JRE modifications.
The solution is a relatively new library called [Java Simple Serial Connector][15] (jSSC). It has a release on Maven
Central that allows cross-platform serial port access without any JRE modifications.

### Usage

Expand All @@ -64,7 +63,7 @@ Licensed under [GNU Lesser General Public License 3.0](https://www.gnu.org/licen
[10]: https://www.bricklink.com/catalogItemPic.asp?S=9751-1
[11]: https://en.wikipedia.org/wiki/Lego_Mindstorms#RCX
[14]: https://en.wikibooks.org/wiki/Serial_Programming/Serial_Java
[15]: https://github.com/scream3r/java-simple-serial-connector
[15]: https://github.com/java-native/jssc
[16]: https://maven-badges.herokuapp.com/maven-central/org.chabala.brick/brick-control-lab/badge.svg
[17]: https://maven-badges.herokuapp.com/maven-central/org.chabala.brick/brick-control-lab

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -501,9 +501,9 @@

<dependencies>
<dependency>
<groupId>org.scream3r</groupId>
<groupId>io.github.java-native</groupId>
<artifactId>jssc</artifactId>
<version>2.8.0</version>
<version>2.9.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down