Skip to content

Commit 2e0192d

Browse files
authored
Merge pull request #10 from hivemq/feature/32426-add-installation-guide
2 parents 8d23e2f + 2ae1c89 commit 2e0192d

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,44 @@ HiveMQ MTConnect Protocol is a Java implementation of the MTConnect protocol.
1616
- Support Conversion from MTConnect XML to Java Entities
1717
- Support MTConnect Schema Version Detection
1818

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+
1957
## Quick Start
2058

2159
```java

0 commit comments

Comments
 (0)