blob: c362a5ba56d6553ba60679a06b3c44f3f986502d [file] [log] [blame]
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -07001<!--
2 ~ Copyright 2016-present Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-base</artifactId>
23 <version>1</version>
24 </parent>
25
26 <groupId>org.onosproject</groupId>
27 <artifactId>onos-nemo</artifactId>
28 <version>1.0-SNAPSHOT</version>
29 <packaging>pom</packaging>
30
31 <properties>
32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33 </properties>
34
35 <modules>
36 <!--<module>api</module>-->
37 </modules>
38
39 <dependencies>
40 <dependency>
41 <groupId>com.google.guava</groupId>
42 <artifactId>guava</artifactId>
43 <version>19.0</version>
44 </dependency>
45 <dependency>
46 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.compendium</artifactId>
48 <version>5.0.0</version>
49 <scope>test</scope>
50 </dependency>
51 </dependencies>
52
53 <build>
54 <pluginManagement>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-compiler-plugin</artifactId>
59 <version>3.5.1</version>
60 <configuration>
61 <source>1.8</source>
62 <target>1.8</target>
63 </configuration>
64
65 </plugin>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
69 <version>2.3.7</version>
70 </plugin>
71 </plugins>
72 </pluginManagement>
73 </build>
74</project>