blob: 56363e3b63411a5befaea44b844bebbdbdee2a3b [file] [log] [blame]
Priyanka Bb977f562016-07-22 13:02:03 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
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>
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070024 <artifactId>onos-apps-pce</artifactId>
ONOS Jenkins User45d340c2018-01-09 01:56:13 +000025 <version>1.13.0-SNAPSHOT</version>
Priyanka Bb977f562016-07-22 13:02:03 +053026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070029 <artifactId>onos-apps-pce-pcerest</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053030 <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>
Priyanka Bb977f562016-07-22 13:02:03 +053045 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-junit</artifactId>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-core-serializers</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.easymock</groupId>
58 <artifactId>easymock</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.onosproject</groupId>
Priyanka Bb977f562016-07-22 13:02:03 +053063 <artifactId>onlab-osgi</artifactId>
64 <classifier>tests</classifier>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onlab-misc</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053070 </dependency>
71 <dependency>
72 <groupId>org.glassfish.jersey.containers</groupId>
73 <artifactId>jersey-container-servlet</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.glassfish.jersey.test-framework</groupId>
77 <artifactId>jersey-test-framework-core</artifactId>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
82 <artifactId>jersey-test-framework-provider-jetty</artifactId>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.onosproject</groupId>
87 <artifactId>onlab-rest</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.onosproject</groupId>
92 <artifactId>onos-incubator-api</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053093 </dependency>
94 <dependency>
95 <groupId>org.onosproject</groupId>
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070096 <artifactId>onos-apps-pce-app</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053097 <version>${project.version}</version>
98 </dependency>
99
100 </dependencies>
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-bundle-plugin</artifactId>
106 <extensions>true</extensions>
107 <configuration>
108 <instructions>
109 <_wab>src/main/resources/</_wab>
110 <Bundle-SymbolicName>
111 ${project.groupId}.${project.artifactId}
112 </Bundle-SymbolicName>
113 <Import-Package>
114 *,org.glassfish.jersey.servlet
115 </Import-Package>
116 <Web-ContextPath>${web.context}</Web-ContextPath>
117 </instructions>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122</project>