blob: 67085c295bbd6acf6c4dac05f934ec0803784279 [file] [log] [blame]
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -07001<?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/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
9 <artifactId>onos-apps</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-app-metrics</artifactId>
15 <packaging>pom</packaging>
16
17 <description>ONOS metrics applications</description>
18
19 <modules>
Pavlin Radoslavov295b2962014-10-23 01:12:41 -070020 <module>intent</module>
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -070021 <module>topology</module>
22 </modules>
23
24 <dependencies>
25 <dependency>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onlab-misc</artifactId>
28 </dependency>
29
30 <dependency>
31 <groupId>com.fasterxml.jackson.core</groupId>
32 <artifactId>jackson-databind</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>com.fasterxml.jackson.core</groupId>
36 <artifactId>jackson-annotations</artifactId>
37 </dependency>
38
39 </dependencies>
40
41</project>