Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 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" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos</artifactId> |
Ray Milkey | bca9049 | 2018-04-13 12:47:31 -0700 | [diff] [blame] | 25 | <version>1.14.0-SNAPSHOT</version> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 28 | <artifactId>onos-incubator</artifactId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 29 | <packaging>pom</packaging> |
| 30 | |
| 31 | <description>ONOS Incubator root project</description> |
| 32 | |
| 33 | <modules> |
| 34 | <module>api</module> |
| 35 | <module>net</module> |
| 36 | <module>store</module> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 37 | <module>protobuf-dependencies</module> |
| 38 | <module>grpc-dependencies</module> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 39 | <module>protobuf</module> |
HIGUCHI Yuta | 279b8d1 | 2015-11-04 10:58:06 -0800 | [diff] [blame] | 40 | <module>rpc</module> |
Jian Li | c9b4bf1 | 2017-06-26 23:50:32 +0900 | [diff] [blame] | 41 | <module>rpc-grpc</module> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 42 | <module>rpc-nb</module> |
| 43 | <module>protobuf-nb</module> |
| 44 | <module>grpc</module> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 45 | </modules> |
| 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-api</artifactId> |
| 51 | </dependency> |
Brian O'Connor | 6de2e20 | 2015-05-21 14:30:41 -0700 | [diff] [blame] | 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
| 55 | <artifactId>onos-api</artifactId> |
| 56 | <classifier>tests</classifier> |
| 57 | <scope>test</scope> |
| 58 | </dependency> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 59 | <!-- <dependency> --> |
| 60 | <!-- <groupId>com.google.guava</groupId> --> |
| 61 | <!-- <artifactId>guava</artifactId> --> |
| 62 | <!-- </dependency> --> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onlab-misc</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.onosproject</groupId> |
| 69 | <artifactId>onlab-junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.osgi</groupId> |
| 74 | <artifactId>org.osgi.compendium</artifactId> |
| 75 | </dependency> |
| 76 | </dependencies> |
| 77 | |
| 78 | <build> |
| 79 | <plugins> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.felix</groupId> |
| 82 | <artifactId>maven-bundle-plugin</artifactId> |
| 83 | </plugin> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 84 | <plugin> |
| 85 | <groupId>org.onosproject</groupId> |
| 86 | <artifactId>onos-maven-plugin</artifactId> |
| 87 | </plugin> |
| 88 | </plugins> |
| 89 | </build> |
| 90 | |
| 91 | </project> |