blob: d7c6563e588b10985bb5d6aef338558bac194d2c [file] [log] [blame]
Tomek Osińskie9ccf412018-01-13 19:44:11 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <parent>
Yuta HIGUCHI8c0c8ef2018-03-06 19:10:50 -08006 <artifactId>onos-protocols-xmpp-core</artifactId>
Tomek Osińskie9ccf412018-01-13 19:44:11 +01007 <groupId>org.onosproject</groupId>
Ray Milkey78ce4002018-08-10 11:16:44 -07008 <version>1.14.0-b1</version>
Tomek Osińskie9ccf412018-01-13 19:44:11 +01009 </parent>
10 <modelVersion>4.0.0</modelVersion>
11
Yuta HIGUCHI8c0c8ef2018-03-06 19:10:50 -080012 <artifactId>onos-protocols-xmpp-core-api</artifactId>
Tomek Osińskie9ccf412018-01-13 19:44:11 +010013 <packaging>bundle</packaging>
14
15 <dependencies>
16 <dependency>
17 <groupId>org.igniterealtime</groupId>
18 <artifactId>tinder</artifactId>
Tomek Osińskie9ccf412018-01-13 19:44:11 +010019 </dependency>
20 <dependency>
21 <groupId>io.netty</groupId>
22 <artifactId>netty</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.onosproject</groupId>
26 <artifactId>onos-api</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>io.netty</groupId>
30 <artifactId>netty-handler</artifactId>
31 </dependency>
32 <dependency>
Tomek Osińskie9ccf412018-01-13 19:44:11 +010033 <groupId>org.slf4j</groupId>
34 <artifactId>slf4j-api</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>io.netty</groupId>
38 <artifactId>netty-transport</artifactId>
39 </dependency>
40 </dependencies>
41
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 </plugin>
48 </plugins>
49 </build>
50
51
Yuta HIGUCHI8c0c8ef2018-03-06 19:10:50 -080052</project>