Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 2 | |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 3 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 4 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [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 | <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/maven-v4_0_0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 25 | <artifactId>onos-incubator</artifactId> |
Ray Milkey | 287b4ae | 2017-01-19 15:21:17 -0800 | [diff] [blame] | 26 | <version>1.9.0-SNAPSHOT</version> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 29 | <artifactId>onos-incubator-net</artifactId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
| 31 | |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 32 | <description>ONOS incubating network control core subsystems</description> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 37 | <artifactId>onos-incubator-api</artifactId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 38 | </dependency> |
| 39 | |
| 40 | <dependency> |
| 41 | <groupId>org.onosproject</groupId> |
Andrea Campanella | e72ac55 | 2016-04-11 10:04:52 -0700 | [diff] [blame] | 42 | <artifactId>onos-incubator-api</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | <classifier>tests</classifier> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
Ray Milkey | ae9faf1 | 2015-08-03 15:52:26 -0700 | [diff] [blame] | 51 | <artifactId>onos-core-common</artifactId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 52 | <classifier>tests</classifier> |
| 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
Ray Milkey | ae9faf1 | 2015-08-03 15:52:26 -0700 | [diff] [blame] | 58 | <artifactId>onos-core-serializers</artifactId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 59 | <version>${project.version}</version> |
Thomas Vachuska | c97aa61 | 2015-06-23 16:00:18 -0700 | [diff] [blame] | 60 | <classifier>tests</classifier> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
Thomas Vachuska | 42e8cce | 2015-07-29 19:25:18 -0700 | [diff] [blame] | 65 | <groupId>org.onosproject</groupId> |
| 66 | <artifactId>onos-core-common</artifactId> |
| 67 | </dependency> |
| 68 | |
| 69 | <dependency> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 70 | <groupId>org.easymock</groupId> |
| 71 | <artifactId>easymock</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 76 | <groupId>org.apache.karaf.features</groupId> |
| 77 | <artifactId>org.apache.karaf.features.core</artifactId> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.apache.karaf.system</groupId> |
| 82 | <artifactId>org.apache.karaf.system.core</artifactId> |
| 83 | </dependency> |
Ray Milkey | ae9faf1 | 2015-08-03 15:52:26 -0700 | [diff] [blame] | 84 | |
| 85 | <dependency> |
| 86 | <groupId>org.onosproject</groupId> |
| 87 | <artifactId>onos-incubator-store</artifactId> |
| 88 | <version>${project.version}</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
Andrea Campanella | e72ac55 | 2016-04-11 10:04:52 -0700 | [diff] [blame] | 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 95 | </dependency> |
Brian Stanke | 11f6d53 | 2016-07-05 16:17:59 -0400 | [diff] [blame] | 96 | |
| 97 | <dependency> |
| 98 | <groupId>org.onosproject</groupId> |
| 99 | <artifactId>onlab-osgi</artifactId> |
Brian Stanke | 11f6d53 | 2016-07-05 16:17:59 -0400 | [diff] [blame] | 100 | <classifier>tests</classifier> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 103 | </dependencies> |
| 104 | |
| 105 | <build> |
| 106 | <plugins> |
| 107 | <plugin> |
| 108 | <groupId>org.apache.felix</groupId> |
| 109 | <artifactId>maven-scr-plugin</artifactId> |
| 110 | </plugin> |
| 111 | </plugins> |
| 112 | </build> |
| 113 | |
| 114 | </project> |