blob: 3a2d052a1cb265d1f3d85715991783097eff3beb [file] [log] [blame]
tomab0af292014-09-19 13:04:54 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
tomab0af292014-09-19 13:04:54 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onlab.onos</groupId>
24 <artifactId>onos-core</artifactId>
25 <version>1.0.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-core-net</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS network control core subsystems</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.onlab.onos</groupId>
37 <artifactId>onos-api</artifactId>
38 </dependency>
tombe988312014-09-19 18:38:47 -070039
40 <dependency>
41 <groupId>org.onlab.onos</groupId>
tomca90c462014-09-22 11:40:58 -070042 <artifactId>onos-api</artifactId>
43 <classifier>tests</classifier>
44 <scope>test</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onlab.onos</groupId>
tombe988312014-09-19 18:38:47 -070049 <artifactId>onos-core-trivial</artifactId>
50 <version>${project.version}</version>
51 <scope>test</scope>
52 </dependency>
53
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070054 <dependency>
55 <groupId>org.easymock</groupId>
56 <artifactId>easymock</artifactId>
57 <scope>test</scope>
58 </dependency>
Jonathan Hartb4758a92014-09-24 10:46:45 -070059
tomab0af292014-09-19 13:04:54 -070060 <dependency>
Thomas Vachuska912bdd52014-11-17 11:39:01 -080061 <groupId>org.osgi</groupId>
62 <artifactId>org.osgi.compendium</artifactId>
63 </dependency>
64
65 <dependency>
tomab0af292014-09-19 13:04:54 -070066 <groupId>org.apache.felix</groupId>
67 <artifactId>org.apache.felix.scr.annotations</artifactId>
68 </dependency>
tomab0af292014-09-19 13:04:54 -070069 </dependencies>
70
71 <build>
72 <plugins>
73 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-scr-plugin</artifactId>
76 </plugin>
77 </plugins>
78 </build>
79
80</project>