blob: 16864df4befdbb9c17e46887d8422f19a3d7e803 [file] [log] [blame]
Simon Huntae3e8842015-11-03 11:45:00 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
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 -->
17<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>
23 <groupId>org.onosproject</groupId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080024 <artifactId>onos-dependencies</artifactId>
Yuta HIGUCHIeb2976a2017-02-13 14:56:33 -080025 <version>1.9.0-rc1</version>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080026 <relativePath/><!-- parent is remote -->
Simon Huntae3e8842015-11-03 11:45:00 -080027 </parent>
28
29 <artifactId>onos-app-uiref</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080030 <version>1.9.0-SNAPSHOT</version>
Simon Huntae3e8842015-11-03 11:45:00 -080031 <packaging>bundle</packaging>
32
33 <description>UI Injection Reference App</description>
34
35 <properties>
Yuta HIGUCHIeb2976a2017-02-13 14:56:33 -080036 <onos.version>1.9.0-rc1</onos.version>
Simon Huntae3e8842015-11-03 11:45:00 -080037 <onos.app.name>org.onosproject.uiref</onos.app.name>
38 </properties>
39
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080040 <dependencies>
41
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 <version>${onos.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onlab-osgi</artifactId>
51 <version>${onos.version}</version>
52 </dependency>
53
54
55 <dependency>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>org.apache.felix.scr.annotations</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-databind</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>com.google.guava</groupId>
67 <artifactId>guava</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onlab-misc</artifactId>
73 <version>${onos.version}</version>
74 </dependency>
75
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-scr-plugin</artifactId>
87 </plugin>
88 <plugin>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-maven-plugin</artifactId>
91 </plugin>
92 </plugins>
93 </build>
94
Simon Huntae3e8842015-11-03 11:45:00 -080095</project>