blob: 108ae29f0e0f22f50e598997e26c6666060eacef [file] [log] [blame]
Thomas Vachuska7399e482014-12-01 21:27:42 -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"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <groupId>org.onlab.onos</groupId>
22 <artifactId>onos-bundle</artifactId>
23 <version>1.0.0-SNAPSHOT</version>
24 <packaging>bundle</packaging>
25
26 <description>ONOS OSGi bundle archetype</description>
27 <url>http://onosproject.org</url>
28
29 <properties>
30 <onos.version>1.0.0-SNAPSHOT</onos.version>
31 </properties>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.onlab.onos</groupId>
36 <artifactId>onos-api</artifactId>
37 <version>${onos.version}</version>
38 </dependency>
39
40 <dependency>
41 <groupId>org.onlab.onos</groupId>
42 <artifactId>onlab-osgi</artifactId>
43 <version>${onos.version}</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.scr.annotations</artifactId>
49 <version>1.9.8</version>
50 <scope>provided</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <version>4.11</version>
57 <scope>test</scope>
58 </dependency>
59
60 <dependency>
61 <groupId>org.onlab.onos</groupId>
62 <artifactId>onos-api</artifactId>
63 <version>${onos.version}</version>
64 <scope>test</scope>
65 <classifier>tests</classifier>
66 </dependency>
67 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
74 <version>2.5.3</version>
75 <extensions>true</extensions>
76 </plugin>
77
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-scr-plugin</artifactId>
81 <version>1.20.0</version>
82 <executions>
83 <execution>
84 <id>generate-scr-srcdescriptor</id>
85 <goals>
86 <goal>scr</goal>
87 </goals>
88 </execution>
89 </executions>
90 <configuration>
91 <supportedProjectTypes>
92 <supportedProjectType>bundle</supportedProjectType>
93 <supportedProjectType>war</supportedProjectType>
94 </supportedProjectTypes>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100</project>