blob: 13203baa093becfcb1977864d2f34d58578aa3cb [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>transport</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>Transport network provisioner of Carrier Ethernet service</description>
32
33 <properties>
34 <onos.app.name>org.opencord.ce.local.transport</onos.app.name>
35 <onos.version>1.10.6</onos.version>
36 <onos.app.url>http://opencord.org</onos.app.url>
37 </properties>
38
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-scr-plugin</artifactId>
48 </plugin>
49 <plugin>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-maven-plugin</artifactId>
52 </plugin>
53 </plugins>
54 </build>
55
56 <repositories>
57 <repository>
58 <id>snapshots</id>
59 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
60 <releases><enabled>false</enabled></releases>
61 </repository>
62 </repositories>
63
64 <pluginRepositories>
65 <pluginRepository>
66 <id>snapshots</id>
67 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
68 <releases><enabled>false</enabled></releases>
69 </pluginRepository>
70 </pluginRepositories>
71
72</project>