blob: 596d8f23f571a722a1629364313a5bf044323a23 [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'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present Open Networking Laboratory
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>
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
tome2dc27a2014-09-09 12:41:21 -070029 <artifactId>onos-core</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070030 <packaging>pom</packaging>
31
32 <description>ONOS Core root project</description>
33
34 <modules>
35 <module>api</module>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080036 <module>common</module>
tomab0af292014-09-19 13:04:54 -070037 <module>net</module>
38 <module>store</module>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090039 <module>security</module>
tom0eb04ca2014-08-25 14:34:51 -070040 </modules>
41
42 <dependencies>
43 <dependency>
44 <groupId>com.google.guava</groupId>
45 <artifactId>guava</artifactId>
46 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070047 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080048 <groupId>org.onosproject</groupId>
tom5f38b3a2014-08-27 23:50:54 -070049 <artifactId>onlab-misc</artifactId>
50 </dependency>
tom931af4e2014-09-13 12:00:57 -070051 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080052 <groupId>org.onosproject</groupId>
tom931af4e2014-09-13 12:00:57 -070053 <artifactId>onlab-junit</artifactId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070054 <scope>test</scope>
tom931af4e2014-09-13 12:00:57 -070055 </dependency>
Brian O'Connorc4f351d2015-03-10 20:53:11 -070056 <dependency>
57 <groupId>org.osgi</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 </dependency>
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070060 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.scr.annotations</artifactId>
63 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070064 </dependencies>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 </plugin>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070072
73 <plugin>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-maven-plugin</artifactId>
76 </plugin>
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070077
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-scr-plugin</artifactId>
81 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070082 </plugins>
83 </build>
84
85</project>