blob: 0091b482e039b566df97d71581f502601803f14a [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska24c849c2014-10-27 09:53:05 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ 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
Thomas Vachuska24c849c2014-10-27 09:53:05 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ 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.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070016 -->
tom0eb04ca2014-08-25 14:34:51 -070017<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>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070024 <artifactId>onos</artifactId>
Brian O'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
tom94bb4a42014-08-27 22:12:02 -070029 <artifactId>onlab-utils</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070030 <packaging>pom</packaging>
31
tom94bb4a42014-08-27 22:12:02 -070032 <description>Domain agnostic ON.Lab utilities</description>
tom0eb04ca2014-08-25 14:34:51 -070033
34 <modules>
tom931af4e2014-09-13 12:00:57 -070035 <module>junit</module>
tom94bb4a42014-08-27 22:12:02 -070036 <module>misc</module>
Vinod Kumar S7a004de2016-02-05 16:15:09 +053037 <module>yangutils</module>
tom0eb04ca2014-08-25 14:34:51 -070038 <module>osgi</module>
39 <module>rest</module>
Thomas Vachuska6b331262015-04-27 11:09:07 -070040 <module>jdvue</module>
Brian O'Connor42c38cf2016-04-05 17:05:57 -070041 <module>osgiwrap</module>
tom0eb04ca2014-08-25 14:34:51 -070042 </modules>
43
44 <dependencies>
45 <dependency>
46 <groupId>com.google.guava</groupId>
47 <artifactId>guava</artifactId>
48 </dependency>
Thomas Vachuska33601602014-11-19 03:32:15 -080049 <dependency>
50 <groupId>org.osgi</groupId>
51 <artifactId>org.osgi.compendium</artifactId>
52 <scope>test</scope>
53 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070054 </dependencies>
55
tom0eb04ca2014-08-25 14:34:51 -070056 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
61 </plugin>
62 </plugins>
63 </build>
64
65</project>