blob: 6595ffd5f645daffe47a5e1eb03b90e65ce43993 [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>
Brian O'Connor42c38cf2016-04-05 17:05:57 -070044 <module>osgiwrap</module>
tom0eb04ca2014-08-25 14:34:51 -070045 </modules>
46
47 <dependencies>
48 <dependency>
49 <groupId>com.google.guava</groupId>
50 <artifactId>guava</artifactId>
51 </dependency>
Thomas Vachuska33601602014-11-19 03:32:15 -080052 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.compendium</artifactId>
55 <scope>test</scope>
56 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070057 </dependencies>
58
tom0eb04ca2014-08-25 14:34:51 -070059 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 </plugin>
65 </plugins>
66 </build>
67
68</project>