blob: 0ceaa17d064b4c5af88d7ec752b6997eef5a315e [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
9 <artifactId>onos-net</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-core</artifactId>
tomb1260e42014-08-26 18:39:57 -070015 <packaging>pom</packaging>
tom0eb04ca2014-08-25 14:34:51 -070016
17 <description>ONOS network control core subsystems</description>
18
tomb1260e42014-08-26 18:39:57 -070019 <modules>
20 <module>trivial</module>
21 </modules>
22
tom0eb04ca2014-08-25 14:34:51 -070023 <dependencies>
24 <dependency>
25 <groupId>org.onlab.onos</groupId>
26 <artifactId>onos-api</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.slf4j</groupId>
30 <artifactId>slf4j-api</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.scr.annotations</artifactId>
35 </dependency>
36 </dependencies>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-scr-plugin</artifactId>
43 </plugin>
44 </plugins>
45 </build>
46
47</project>