blob: 5ac2ee6c09ab46adb773c6b247bc2a0a32ecd535 [file] [log] [blame]
Andrea Campanella9bc81302017-10-20 11:56:51 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.opencord.ce</groupId>
24 <artifactId>local</artifactId>
25 <version>1.0.0-SNAPSHOT</version>
26 </parent>
27
28 <artifactId>vee</artifactId>
29 <packaging>bundle</packaging>
30 <version>1.0.0-SNAPSHOT</version>
31
32 <description>Virtual Ethernet Edge service for CORD</description>
33
34 <properties>
35 <onos.app.name>org.opencord.ce.local.vee</onos.app.name>
36 <onos.app.title>E-CORD Ethernet Edge app</onos.app.title>
37 <onos.app.url>http://opencord.org</onos.app.url>
38 <onos.app.requires>org.opencord.ce.local.bigswitch</onos.app.requires>
39 <onos.app.requires>org.opencord.ce.local.channel.http</onos.app.requires>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.opencord.ce</groupId>
45 <artifactId>bigswitch</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 </dependencies>
49
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-scr-plugin</artifactId>
59 </plugin>
60 <plugin>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-maven-plugin</artifactId>
63 </plugin>
64 </plugins>
65 </build>
66
67 <repositories>
68 <repository>
69 <id>snapshots</id>
70 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
71 <releases><enabled>false</enabled></releases>
72 </repository>
73 </repositories>
74
75 <pluginRepositories>
76 <pluginRepository>
77 <id>snapshots</id>
78 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
79 <releases><enabled>false</enabled></releases>
80 </pluginRepository>
81 </pluginRepositories>
82
83</project>