Jonathan Hart | b4a4215 | 2015-12-08 17:06:30 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
| 3 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 4 | ~ Copyright 2015-present Open Networking Laboratory |
Jonathan Hart | b4a4215 | 2015-12-08 17:06:30 -0800 | [diff] [blame] | 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 | |
| 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> |
Brian O'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 27 | <version>1.6.0-SNAPSHOT</version> |
Jonathan Hart | b4a4215 | 2015-12-08 17:06:30 -0800 | [diff] [blame] | 28 | <relativePath>../pom.xml</relativePath> |
| 29 | </parent> |
| 30 | |
| 31 | <artifactId>onos-incubator-core</artifactId> |
| 32 | <packaging>bundle</packaging> |
| 33 | |
| 34 | <description>ONOS incubating core</description> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.onosproject</groupId> |
| 39 | <artifactId>onos-incubator-api</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>com.google.guava</groupId> |
| 43 | <artifactId>guava-testlib</artifactId> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.easymock</groupId> |
| 48 | <artifactId>easymock</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.felix</groupId> |
| 53 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Jonathan Hart | b4a4215 | 2015-12-08 17:06:30 -0800 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.apache.felix</groupId> |
| 57 | <artifactId>org.apache.felix.scr</artifactId> |
Jonathan Hart | b4a4215 | 2015-12-08 17:06:30 -0800 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.osgi</groupId> |
| 61 | <artifactId>org.osgi.core</artifactId> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.felix</groupId> |
| 69 | <artifactId>maven-scr-plugin</artifactId> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
Jonathan Hart | b4a4215 | 2015-12-08 17:06:30 -0800 | [diff] [blame] | 73 | </project> |