blob: ecb3e10edca6b384987311ba3ba3c2c4d6ca2e4b [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 HIGUCHI4d474072016-12-13 18:17:45 -080025 <version>1.9.0-SNAPSHOT</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 HIGUCHIc9fae9f2017-01-31 15:21:51 -080036 <onos.version>1.9.0-SNAPSHOT</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 <!-- FIXME stop depending on SNAPSHOT version of ONOS-->
41 <repositories>
42 <repository>
43 <id>snapshots</id>
44 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
45 <releases><enabled>false</enabled></releases>
46 </repository>
47 </repositories>
48
49
50 <dependencies>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <version>${onos.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-osgi</artifactId>
61 <version>${onos.version}</version>
62 </dependency>
63
64
65 <dependency>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>org.apache.felix.scr.annotations</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-databind</artifactId>
73 </dependency>
74
75 <dependency>
76 <groupId>com.google.guava</groupId>
77 <artifactId>guava</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onlab-misc</artifactId>
83 <version>${onos.version}</version>
84 </dependency>
85
86 </dependencies>
87
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-bundle-plugin</artifactId>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-scr-plugin</artifactId>
97 </plugin>
98 <plugin>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onos-maven-plugin</artifactId>
101 </plugin>
102 </plugins>
103 </build>
104
Simon Huntae3e8842015-11-03 11:45:00 -0800105</project>