blob: 84e6f4eb80383263cacfdf7f0c7a0285884192cb [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 Vachuskaf9c84362015-04-15 11:20:45 -070040 <module>stc</module>
Thomas Vachuska6b331262015-04-27 11:09:07 -070041 <module>jdvue</module>
Brian O'Connor42c38cf2016-04-05 17:05:57 -070042 <module>osgiwrap</module>
tom0eb04ca2014-08-25 14:34:51 -070043 </modules>
44
45 <dependencies>
46 <dependency>
47 <groupId>com.google.guava</groupId>
48 <artifactId>guava</artifactId>
49 </dependency>
Thomas Vachuska33601602014-11-19 03:32:15 -080050 <dependency>
51 <groupId>org.osgi</groupId>
52 <artifactId>org.osgi.compendium</artifactId>
53 <scope>test</scope>
54 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070055 </dependencies>
56
tom0eb04ca2014-08-25 14:34:51 -070057 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 </plugin>
63 </plugins>
64 </build>
65
66</project>