blob: 2bc6a609300af6942b91cc040a8d1e65db520c41 [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>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tomab0af292014-09-19 13:04:54 -070024 <artifactId>onos-core</artifactId>
Brian O'Connor7f2e9bf2014-12-04 23:35:13 -080025 <version>1.1.0-SNAPSHOT</version>
tomab0af292014-09-19 13:04:54 -070026 <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>
Brian O'Connorabafb502014-12-02 22:26:20 -080036 <groupId>org.onosproject</groupId>
tomab0af292014-09-19 13:04:54 -070037 <artifactId>onos-api</artifactId>
38 </dependency>
tombe988312014-09-19 18:38:47 -070039
40 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080041 <groupId>org.onosproject</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>
Brian O'Connorabafb502014-12-02 22:26:20 -080048 <groupId>org.onosproject</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>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080055 <groupId>org.onosproject</groupId>
56 <artifactId>onos-core-common</artifactId>
57 <version>${project.version}</version>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
61
62 <dependency>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070063 <groupId>org.easymock</groupId>
64 <artifactId>easymock</artifactId>
65 <scope>test</scope>
66 </dependency>
Jonathan Hartb4758a92014-09-24 10:46:45 -070067
tomab0af292014-09-19 13:04:54 -070068 <dependency>
Thomas Vachuska912bdd52014-11-17 11:39:01 -080069 <groupId>org.osgi</groupId>
70 <artifactId>org.osgi.compendium</artifactId>
71 </dependency>
72
73 <dependency>
tomab0af292014-09-19 13:04:54 -070074 <groupId>org.apache.felix</groupId>
75 <artifactId>org.apache.felix.scr.annotations</artifactId>
76 </dependency>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080077
78 <dependency>
79 <groupId>org.apache.karaf.features</groupId>
80 <artifactId>org.apache.karaf.features.core</artifactId>
81 <version>3.0.2</version>
82 </dependency>
tomab0af292014-09-19 13:04:54 -070083 </dependencies>
84
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-scr-plugin</artifactId>
90 </plugin>
91 </plugins>
92 </build>
93
94</project>