File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,44 @@ HiveMQ MTConnect Protocol is a Java implementation of the MTConnect protocol.
16
16
- Support Conversion from MTConnect XML to Java Entities
17
17
- Support MTConnect Schema Version Detection
18
18
19
+ ## Installation
20
+
21
+ ### Maven
22
+
23
+ ``` xml
24
+ <dependency >
25
+ <groupId >com.hivemq</groupId >
26
+ <artifactId >hivemq-mtconnect-protocol</artifactId >
27
+ <version >1.0.0</version >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >jakarta.xml.bind</groupId >
31
+ <artifactId >jakarta.xml.bind-api</artifactId >
32
+ <version >4.0.2</version >
33
+ </dependency >
34
+ <dependency >
35
+ <groupId >com.sun.xml.bind</groupId >
36
+ <artifactId >jaxb-impl</artifactId >
37
+ <version >4.0.5</version >
38
+ </dependency >
39
+ ```
40
+
41
+ ### Gradle
42
+
43
+ ``` kotlin
44
+ implementation ' com.hivemq:hivemq-mtconnect-protocol:1.0.0'
45
+ implementation ' jakarta.xml.bind:jakarta.xml.bind-api:4.0.2'
46
+ implementation ' com.sun.xml.bind:jaxb-impl:4.0.5'
47
+ ```
48
+
49
+ ### Gradle (Kotlin)
50
+
51
+ ``` kotlin
52
+ implementation(" com.hivemq:hivemq-mtconnect-protocol:1.0.0" )
53
+ implementation(" jakarta.xml.bind:jakarta.xml.bind-api:4.0.2" )
54
+ implementation(" com.sun.xml.bind:jaxb-impl:4.0.5" )
55
+ ```
56
+
19
57
## Quick Start
20
58
21
59
``` java
You can’t perform that action at this time.
0 commit comments