blob: 018ddf885f131b1dc633c28bfbd1dbca23c51b38 [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
Thomas Vachuska586afd82015-04-17 11:06:53 -070035 <properties>
36 <onos.app.name>org.onosproject.drivers</onos.app.name>
37 </properties>
38
alshabibfaa1e362015-04-02 15:01:54 -070039 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 </dependency>
49
50 <dependency>
51 <groupId>org.easymock</groupId>
52 <artifactId>easymock</artifactId>
53 <scope>test</scope>
54 </dependency>
55
alshabib77b88482015-04-07 15:47:50 -070056 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.scr.annotations</artifactId>
59 </dependency>
60
alshabibfaa1e362015-04-02 15:01:54 -070061 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
alshabib77b88482015-04-07 15:47:50 -070067 <artifactId>maven-scr-plugin</artifactId>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
alshabibfaa1e362015-04-02 15:01:54 -070071 <artifactId>maven-bundle-plugin</artifactId>
72 </plugin>
Thomas Vachuskadb7467a2015-04-17 11:06:53 -070073 <plugin>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-maven-plugin</artifactId>
76 </plugin>
alshabibfaa1e362015-04-02 15:01:54 -070077 </plugins>
78 </build>
79</project>