blob: ceb13441ca1fda7432f9b22a82fb891322d15144 [file] [log] [blame]
Priyanka Bb977f562016-07-22 13:02:03 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor0a4e6742016-09-15 23:03:10 -07003 ~ Copyright 2016-present Open Networking Laboratory
Priyanka Bb977f562016-07-22 13:02:03 +05304 ~
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>
Priyanka Bb977f562016-07-22 13:02:03 +053064 <artifactId>onlab-osgi</artifactId>
65 <classifier>tests</classifier>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-misc</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053071 </dependency>
72 <dependency>
73 <groupId>org.glassfish.jersey.containers</groupId>
74 <artifactId>jersey-container-servlet</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.glassfish.jersey.test-framework</groupId>
78 <artifactId>jersey-test-framework-core</artifactId>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
83 <artifactId>jersey-test-framework-provider-jetty</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onlab-rest</artifactId>
89 <version>${project.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>org.onosproject</groupId>
93 <artifactId>onos-incubator-api</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053094 </dependency>
95 <dependency>
96 <groupId>org.onosproject</groupId>
97 <artifactId>onos-app-pce</artifactId>
98 <version>${project.version}</version>
99 </dependency>
100
101 </dependencies>
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>maven-bundle-plugin</artifactId>
107 <extensions>true</extensions>
108 <configuration>
109 <instructions>
110 <_wab>src/main/resources/</_wab>
111 <Bundle-SymbolicName>
112 ${project.groupId}.${project.artifactId}
113 </Bundle-SymbolicName>
114 <Import-Package>
115 *,org.glassfish.jersey.servlet
116 </Import-Package>
117 <Web-ContextPath>${web.context}</Web-ContextPath>
118 </instructions>
119 </configuration>
120 </plugin>
121 </plugins>
122 </build>
123</project>