blob: 7ce163c27a3383b775eab6d64d5fd116cff13293 [file] [log] [blame]
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -08001<?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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19
20 <groupId>${groupId}</groupId>
21 <artifactId>${artifactId}</artifactId>
22 <version>${version}</version>
23 <packaging>bundle</packaging>
24
25 <description>ONOS OSGi API bundle archetype</description>
26 <url>http://onosproject.org</url>
27
28 <properties>
Brian O'Connor7f2e9bf2014-12-04 23:35:13 -080029 <onos.version>1.1.0-SNAPSHOT</onos.version>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080030 </properties>
31
32 <dependencies>
33 <dependency>
34 <groupId>org.onosproject</groupId>
35 <artifactId>onos-api</artifactId>
36 <version>${onos.version}</version>
37 </dependency>
38 </dependencies>
39
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <version>2.5.3</version>
46 <extensions>true</extensions>
47 </plugin>
Brian O'Connor0b351912014-12-11 14:40:31 -080048 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <version>2.5.1</version>
52 <configuration>
53 <source>1.8</source>
54 <target>1.8</target>
55 </configuration>
56 </plugin>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080057 </plugins>
58 </build>
59
60</project>