blob: 9f902ee56f055fb52a70ea6acf19522ab6fc68e4 [file] [log] [blame]
Priyanka Bb977f562016-07-22 13:02:03 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-2017 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.onosproject</groupId>
24 <artifactId>onos-pce</artifactId>
25 <version>1.7.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-pcerest</artifactId>
30 <packaging>bundle</packaging>
31 <properties>
32 <web.context>/onos/pce</web.context>
33 <onos.app.name>org.onosproject.pcerest</onos.app.name>
34 <onos.app.title>PCE REST application</onos.app.title>
35 <onos.app.category>Utility</onos.app.category>
36 <onos.app.url>https://wiki.onosproject.org/display/ONOS/</onos.app.url>
37 <onos.app.readme>RESTCONF for PCE.</onos.app.readme>
38 </properties>
39 <description>PCE REST application</description>
40
41 <dependencies>
42 <dependency>
43 <groupId>javax.ws.rs</groupId>
44 <artifactId>javax.ws.rs-api</artifactId>
45 <version>2.0.1</version>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-junit</artifactId>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-core-serializers</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.easymock</groupId>
59 <artifactId>easymock</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onlab-osgi</artifactId>
70 <classifier>tests</classifier>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onlab-misc</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>org.glassfish.jersey.containers</groupId>
80 <artifactId>jersey-container-servlet</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.glassfish.jersey.test-framework</groupId>
84 <artifactId>jersey-test-framework-core</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
89 <artifactId>jersey-test-framework-provider-jetty</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onlab-rest</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.onosproject</groupId>
99 <artifactId>onos-incubator-api</artifactId>
100 <version>${project.version}</version>
101 </dependency>
102 <dependency>
103 <groupId>org.onosproject</groupId>
104 <artifactId>onos-app-pce</artifactId>
105 <version>${project.version}</version>
106 </dependency>
107
108 </dependencies>
109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-bundle-plugin</artifactId>
114 <extensions>true</extensions>
115 <configuration>
116 <instructions>
117 <_wab>src/main/resources/</_wab>
118 <Bundle-SymbolicName>
119 ${project.groupId}.${project.artifactId}
120 </Bundle-SymbolicName>
121 <Import-Package>
122 *,org.glassfish.jersey.servlet
123 </Import-Package>
124 <Web-ContextPath>${web.context}</Web-ContextPath>
125 </instructions>
126 </configuration>
127 </plugin>
128 </plugins>
129 </build>
130</project>