blob: 1a113c71443bf7b5f4ede511d92f6d3cf3b81c69 [file] [log] [blame]
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -07001<!--
Brian O'Connor23c7e322017-08-03 18:48:27 -07002 ~ Copyright 2016-present Open Networking Foundation
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -07003 ~
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 -->
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080016<project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -070018 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-base</artifactId>
24 <version>1</version>
25 </parent>
26
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080027 <artifactId>onos-app-nemo</artifactId>
28 <version>1.7.0-SNAPSHOT</version>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -070029 <packaging>pom</packaging>
30
31 <properties>
32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080033 <onos.version>1.7.0</onos.version>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -070034 </properties>
35
36 <modules>
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080037 <module>nemoengine</module>
38 <module>nemoweb</module>
39 <module>app</module>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -070040 </modules>
41
42 <dependencies>
43 <dependency>
44 <groupId>com.google.guava</groupId>
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080045 <artifactId>guava-testlib</artifactId>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -070046 <version>19.0</version>
47 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.compendium</artifactId>
51 <version>5.0.0</version>
52 <scope>test</scope>
53 </dependency>
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080054 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-junit</artifactId>
57 <version>${onos.version}</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.easymock</groupId>
62 <artifactId>easymock</artifactId>
63 <version>3.4</version>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.scr.annotations</artifactId>
69 <version>1.9.12</version>
70 </dependency>
71
72 <dependency>
73 <groupId>org.slf4j</groupId>
74 <artifactId>slf4j-api</artifactId>
75 <version>1.7.21</version>
76 </dependency>
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-core-common</artifactId>
80 <version>${onos.version}</version>
81 </dependency>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -070082 </dependencies>
83
84 <build>
anjiaqi123456782a3c5a2016-10-11 15:57:50 +080085 <plugins>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-bundle-plugin</artifactId>
89 <version>2.3.7</version>
90 <extensions>true</extensions>
91 </plugin>
92
93 <plugin>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-maven-plugin</artifactId>
96 <version>1.10</version>
97 <executions>
98 <execution>
99 <id>app</id>
100 <phase>package</phase>
101 <goals>
102 <goal>app</goal>
103 </goals>
104 </execution>
105 </executions>
106 </plugin>
107 </plugins>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -0700108 <pluginManagement>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-compiler-plugin</artifactId>
113 <version>3.5.1</version>
114 <configuration>
115 <source>1.8</source>
116 <target>1.8</target>
117 </configuration>
Thomas Vachuskaec64c1f2016-08-30 09:44:42 -0700118 </plugin>
119 </plugins>
120 </pluginManagement>
121 </build>
122</project>