blob: ac7f64fbd3e0ba84c6359779715bc26d76b9c61b [file] [log] [blame]
francescoee363912017-05-02 16:55:28 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present 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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.opencord.ce</groupId>
24 <artifactId>global</artifactId>
25 <version>1.0.0</version>
26 </parent>
27
28 <artifactId>orchestration</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>Orchestration logic of Carrier Ethernet Forwarding Constructs</description>
32
33 <properties>
34 <web.context>/carrierethernet</web.context>
35 <onos.app.name>org.opencord.ce.global.orchestration</onos.app.name>
36 <onos.version>1.10.3</onos.version>
37 <onos.app.url>http://opencord.org</onos.app.url>
38 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-api</artifactId>
44 <version>${onos.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-rest</artifactId>
49 <version>${onos.version}</version>
50 <scope>provided</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-cli</artifactId>
55 <version>${onos.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.karaf.shell</groupId>
59 <artifactId>org.apache.karaf.shell.console</artifactId>
60 <version>3.0.5</version>
61 <scope>provided</scope>
62 </dependency>
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
70 <extensions>true</extensions>
71 <configuration>
72 <instructions>
73 <_wab>src/main/webapp/</_wab>
74 <Bundle-SymbolicName>
75 ${project.groupId}.${project.artifactId}
76 </Bundle-SymbolicName>
77 <Import-Package>
78 *,org.glassfish.jersey.servlet
79 </Import-Package>
80 <Web-ContextPath>${web.context}</Web-ContextPath>
81 </instructions>
82 </configuration>
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
95
96 <repositories>
97 <repository>
98 <id>snapshots</id>
99 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
100 <releases><enabled>false</enabled></releases>
101 </repository>
102 </repositories>
103
104 <pluginRepositories>
105 <pluginRepository>
106 <id>snapshots</id>
107 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
108 <releases><enabled>false</enabled></releases>
109 </pluginRepository>
110 </pluginRepositories>
111
112</project>