blob: a5719659c4ad2a16c351def4b477ad6ed403f6da [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<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 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'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.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 Vachuskaca60f2b2014-11-06 01:34:28 -080040 <module>thirdparty</module>
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070041 <module>stc</module>
Thomas Vachuska6b331262015-04-27 11:09:07 -070042 <module>jdvue</module>
Aaron Kruglikov1ce351a2015-11-04 15:03:52 -080043 <module>jnc</module>
tom0eb04ca2014-08-25 14:34:51 -070044 </modules>
45
46 <dependencies>
47 <dependency>
48 <groupId>com.google.guava</groupId>
49 <artifactId>guava</artifactId>
50 </dependency>
Thomas Vachuska33601602014-11-19 03:32:15 -080051 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.compendium</artifactId>
54 <scope>test</scope>
55 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070056 </dependencies>
57
tom0eb04ca2014-08-25 14:34:51 -070058 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
63 </plugin>
64 </plugins>
65 </build>
66
67</project>