blob: c075147d79864eefc890f892da18c0e3321a8c60 [file] [log] [blame]
tomab0af292014-09-19 13:04:54 -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-core</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-core-net</artifactId>
15 <packaging>bundle</packaging>
16
17 <description>ONOS network control core subsystems</description>
18
19 <dependencies>
20 <dependency>
21 <groupId>org.onlab.onos</groupId>
22 <artifactId>onos-api</artifactId>
23 </dependency>
tombe988312014-09-19 18:38:47 -070024
25 <dependency>
26 <groupId>org.onlab.onos</groupId>
tomca90c462014-09-22 11:40:58 -070027 <artifactId>onos-api</artifactId>
28 <classifier>tests</classifier>
29 <scope>test</scope>
30 </dependency>
31
32 <dependency>
33 <groupId>org.onlab.onos</groupId>
tombe988312014-09-19 18:38:47 -070034 <artifactId>onos-core-trivial</artifactId>
35 <version>${project.version}</version>
36 <scope>test</scope>
37 </dependency>
38
tomca90c462014-09-22 11:40:58 -070039 <!-- TODO Consider removing store dependency.
40 Currently required for DistributedDeviceManagerTest. -->
41 <dependency>
42 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIb5df76d2014-09-27 20:54:00 -070043 <artifactId>onos-core-hz-net</artifactId>
tomca90c462014-09-22 11:40:58 -070044 <version>${project.version}</version>
45 <scope>test</scope>
46 </dependency>
Yuta HIGUCHIb4139d82014-09-23 18:41:33 -070047 <dependency>
48 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070049 <!-- FIXME: should be somewhere else -->
Yuta HIGUCHIb5df76d2014-09-27 20:54:00 -070050 <artifactId>onos-core-hz-common</artifactId>
Yuta HIGUCHIb4139d82014-09-23 18:41:33 -070051 <version>${project.version}</version>
52 <classifier>tests</classifier>
53 <scope>test</scope>
54 </dependency>
tomca90c462014-09-22 11:40:58 -070055
tomab0af292014-09-19 13:04:54 -070056 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.scr.annotations</artifactId>
59 </dependency>
tomab0af292014-09-19 13:04:54 -070060 </dependencies>
61
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-scr-plugin</artifactId>
67 </plugin>
68 </plugins>
69 </build>
70
71</project>