Skip to content

Commit e0bb4ae

Browse files
authored
Update README.md
add section about use this trex-java-sdk in maven project
1 parent 83159a2 commit e0bb4ae

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,22 @@ Java client SDK provides an implementation for
88
you can copy and edit examples/bootstrap directory and compile/run separately
99
see examples/bootstrap/README.md
1010

11+
### How to use in Maven project
12+
Add a dependency to the pom.xml as like below:
13+
```
14+
<project xmlns="http://maven.apache.org/POM/4.0.0"
15+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
17+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
18+
...
19+
<dependencies>
20+
<dependency>
21+
<groupId>com.cisco.trex</groupId>
22+
<artifactId>trex-java-sdk</artifactId>
23+
<version>1.28</version>
24+
</dependency>
25+
...
26+
</dependencies>
27+
...
28+
</project>
29+
```

0 commit comments

Comments
 (0)