blob: 6518068d748470fececeb1c175d697677c64c6ca [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
Jonathan Hartb4758a92014-09-24 10:46:45 -070039 <dependency>
40 <groupId>org.easymock</groupId>
41 <artifactId>easymock</artifactId>
42 <scope>test</scope>
43 </dependency>
44
tomca90c462014-09-22 11:40:58 -070045 <!-- TODO Consider removing store dependency.
46 Currently required for DistributedDeviceManagerTest. -->
47 <dependency>
48 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIb5df76d2014-09-27 20:54:00 -070049 <artifactId>onos-core-hz-net</artifactId>
tomca90c462014-09-22 11:40:58 -070050 <version>${project.version}</version>
51 <scope>test</scope>
52 </dependency>
Yuta HIGUCHIb4139d82014-09-23 18:41:33 -070053 <dependency>
54 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070055 <!-- FIXME: should be somewhere else -->
Yuta HIGUCHIb5df76d2014-09-27 20:54:00 -070056 <artifactId>onos-core-hz-common</artifactId>
Yuta HIGUCHIb4139d82014-09-23 18:41:33 -070057 <version>${project.version}</version>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
tomca90c462014-09-22 11:40:58 -070061
tomab0af292014-09-19 13:04:54 -070062 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.scr.annotations</artifactId>
65 </dependency>
tomab0af292014-09-19 13:04:54 -070066 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-scr-plugin</artifactId>
73 </plugin>
74 </plugins>
75 </build>
76
77</project>