blob: bb07a78bfc740addf1f691fa6f4fb02dce834175 [file] [log] [blame]
alshabibfaa1e362015-04-02 15:01:54 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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 -->
17<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
23 <parent>
24 <groupId>org.onosproject</groupId>
25 <artifactId>onos</artifactId>
26 <version>1.2.0-SNAPSHOT</version>
27 <relativePath>../pom.xml</relativePath>
28 </parent>
29
30 <artifactId>onos-drivers</artifactId>
31 <packaging>bundle</packaging>
32
Thomas Vachuskadb7467a2015-04-17 11:06:53 -070033 <description>Builtin device drivers</description>
alshabibfaa1e362015-04-02 15:01:54 -070034
35 <dependencies>
36 <dependency>
37 <groupId>org.osgi</groupId>
38 <artifactId>org.osgi.compendium</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-api</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.easymock</groupId>
48 <artifactId>easymock</artifactId>
49 <scope>test</scope>
50 </dependency>
51
alshabib77b88482015-04-07 15:47:50 -070052 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.scr.annotations</artifactId>
55 </dependency>
56
alshabibfaa1e362015-04-02 15:01:54 -070057 </dependencies>
58
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
alshabib77b88482015-04-07 15:47:50 -070063 <artifactId>maven-scr-plugin</artifactId>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
alshabibfaa1e362015-04-02 15:01:54 -070067 <artifactId>maven-bundle-plugin</artifactId>
68 </plugin>
Thomas Vachuskadb7467a2015-04-17 11:06:53 -070069 <plugin>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onos-maven-plugin</artifactId>
72 </plugin>
alshabibfaa1e362015-04-02 15:01:54 -070073 </plugins>
74 </build>
75</project>