-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
31 lines (30 loc) · 1016 Bytes
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.slytechs.jnet.jnetpcap</groupId>
<artifactId>jnetpcap-sdk-parent</artifactId>
<version>0.10.0</version>
</parent>
<artifactId>jnetpcap-example</artifactId>
<name>jNetPcap Example</name>
<description>jNetPcap API examples</description>
<dependencies>
<dependency>
<groupId>com.slytechs.jnet.jnetpcap</groupId>
<artifactId>jnetpcap-api</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.slytechs.jnet.protocol</groupId>
<artifactId>protocol-pack-api</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.slytechs.jnet.protocol</groupId>
<artifactId>protocol-pack-web</artifactId>
<version>0.10.0</version>
</dependency>
</dependencies>
</project>