Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.22 KB

jvpp.rst

File metadata and controls

46 lines (32 loc) · 1.22 KB

Getting jvpp jar

VPP provides java bindings which can be downloaded at:

Getting jvpp via maven

1. Add the following to the repositories section in your ~/.m2/settings.xml to pick up the fd.io maven repo:

<repository>
 <id>fd.io-release</id>
 <name>fd.io-release</name>
 <url>https://nexus.fd.io/content/repositories/fd.io.release/</url>
 <releases>
   <enabled>false</enabled>
 </releases>
 <snapshots>
   <enabled>true</enabled>
 </snapshots>

</repository>

For more information on setting up maven repositories in settings.xml, please look at:

2. Then you can get jvpp by putting in the dependencies section of your pom.xml file:

<dependency>
  <groupId>io.fd.vpp</groupId>
  <artifactId>jvpp-core</artifactId>
  <version>17.10</version>
</dependency>

For more information on maven dependency managment, please look at: