blob: 936229b58c95518b7f3ff6e32272329af56771d2 [file] [log] [blame]
Jonathan Hartb4a42152015-12-08 17:06:30 -08001<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07004 ~ Copyright 2015-present Open Networking Laboratory
Jonathan Hartb4a42152015-12-08 17:06:30 -08005 ~
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
19<project xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23
24 <parent>
25 <groupId>org.onosproject</groupId>
26 <artifactId>onos-incubator</artifactId>
Ray Milkey08b03a92017-05-15 11:26:33 -070027 <version>1.11.0-SNAPSHOT</version>
Jonathan Hartb4a42152015-12-08 17:06:30 -080028 </parent>
29
30 <artifactId>onos-incubator-core</artifactId>
31 <packaging>bundle</packaging>
32
33 <description>ONOS incubating core</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-incubator-api</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>com.google.guava</groupId>
42 <artifactId>guava-testlib</artifactId>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.easymock</groupId>
47 <artifactId>easymock</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.apache.felix.scr.annotations</artifactId>
Jonathan Hartb4a42152015-12-08 17:06:30 -080053 </dependency>
54 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.scr</artifactId>
Jonathan Hartb4a42152015-12-08 17:06:30 -080057 </dependency>
58 <dependency>
59 <groupId>org.osgi</groupId>
60 <artifactId>org.osgi.core</artifactId>
61 </dependency>
62 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-scr-plugin</artifactId>
69 </plugin>
70 </plugins>
71 </build>
Jonathan Hartb4a42152015-12-08 17:06:30 -080072</project>