blob: 6e898559985095fb1741152f64eb18048d5774f1 [file] [log] [blame]
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -08001
2<?xml version="1.0" encoding="UTF-8"?>
3<!--
4 ~ Copyright 2016 Open Networking Laboratory
5 ~
6 ~ Licensed under the Apache License, Version 2.0 (the "License");
7 ~ you may not use this file except in compliance with the License.
8 ~ You may obtain a copy of the License at
9 ~
10 ~ http://www.apache.org/licenses/LICENSE-2.0
11 ~
12 ~ Unless required by applicable law or agreed to in writing, software
13 ~ distributed under the License is distributed on an "AS IS" BASIS,
14 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ~ See the License for the specific language governing permissions and
16 ~ limitations under the License.
17 -->
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <artifactId>onos-olt</artifactId>
25 <groupId>org.onosproject</groupId>
26 <version>1.5.0-SNAPSHOT</version>
27 <relativePath>../pom.xml</relativePath>
28 </parent>
29
30 <artifactId>onos-app-olt-api</artifactId>
31 <packaging>bundle</packaging>
32
33 <url>http://onosproject.org</url>
34
35 <description>CORD OLT application API</description>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onlab-junit</artifactId>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-core-serializers</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId>
52 <version>${project.version}</version>
53 <classifier>tests</classifier>
54 <scope>test</scope>
55 </dependency>
56
57 </dependencies>
58
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 <extensions>true</extensions>
65 <configuration>
66 <instructions>
67 <Export-Package>org.onosproject.olt</Export-Package>
68 </instructions>
69 </configuration>
70 </plugin>
71 </plugins>
72 </build>
73</project>