Skip to content

Commit 5b4ed60

Browse files
committed
updating README with proper instructions for using maven
1 parent 80b5b54 commit 5b4ed60

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ USBtinLib
44
USBtinLib is a Java library for accessing USBtin. USBtin is an USB to CAN
55
interace (http://www.fischl.de/usbtin/).
66

7+
This is just a custom fork from the main code here: https://github.com/EmbedME/USBtinLib
8+
The author did not merge my pull request with the changes to use maven instead, so keeping my own fork then here.
9+
710
Build
811
-----
912
Maven is used to build the library from Java source code. To create the JAR file,
@@ -20,8 +23,13 @@ https://code.google.com/p/java-simple-serial-connector/
2023
Usage
2124
-----
2225

23-
Add USBtinLib.jar to the Classpath or as Library to your project. E.g. in
24-
Netbeans: File -> Project Properties -> Libraries -> Compile -> Add JAR/Folder
26+
Add the following dependency to your maven project:
27+
28+
<dependency>
29+
<groupId>de.fischl.usbtin</groupId>
30+
<artifactId>usbtin</artifactId>
31+
<version>1.0-SNAPSHOT</version>
32+
</dependency>
2533

2634
Import the package containing the library in your Java code:
2735
```

0 commit comments

Comments
 (0)