blob: afa9b6eb30bb02f5e4db45dea8261e4fe6cb0c4e [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 ~
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 -->
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>
Ray Milkeybbcd6a72017-11-22 19:03:05 -080025 <version>1.11.2-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 </parent>
27
tome2dc27a2014-09-09 12:41:21 -070028 <artifactId>onos-core</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070029 <packaging>pom</packaging>
30
31 <description>ONOS Core root project</description>
32
33 <modules>
34 <module>api</module>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080035 <module>common</module>
tomab0af292014-09-19 13:04:54 -070036 <module>net</module>
37 <module>store</module>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090038 <module>security</module>
tom0eb04ca2014-08-25 14:34:51 -070039 </modules>
40
41 <dependencies>
42 <dependency>
43 <groupId>com.google.guava</groupId>
44 <artifactId>guava</artifactId>
45 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070046 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080047 <groupId>org.onosproject</groupId>
tom5f38b3a2014-08-27 23:50:54 -070048 <artifactId>onlab-misc</artifactId>
49 </dependency>
tom931af4e2014-09-13 12:00:57 -070050 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080051 <groupId>org.onosproject</groupId>
tom931af4e2014-09-13 12:00:57 -070052 <artifactId>onlab-junit</artifactId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070053 <scope>test</scope>
tom931af4e2014-09-13 12:00:57 -070054 </dependency>
Brian O'Connorc4f351d2015-03-10 20:53:11 -070055 <dependency>
56 <groupId>org.osgi</groupId>
57 <artifactId>org.osgi.compendium</artifactId>
58 </dependency>
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070059 <dependency>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>org.apache.felix.scr.annotations</artifactId>
62 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070063 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
70 </plugin>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070071
72 <plugin>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-maven-plugin</artifactId>
75 </plugin>
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070076
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-scr-plugin</artifactId>
80 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070081 </plugins>
82 </build>
83
84</project>