blob: 3ab33bf2ed0566c74827b864d72809ad51c2e16e [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 User2f8de0d2019-05-31 16:21:12 +000025 <version>1.12.2-rc2</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>
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>
Yuta HIGUCHI834894a2017-08-29 10:24:05 -070097 <artifactId>onos-apps-pce-app</artifactId>
Priyanka Bb977f562016-07-22 13:02:03 +053098 <version>${project.version}</version>
99 </dependency>
Thomas Vachuska8bb88532018-07-17 11:51:54 -0700100 <dependency>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onos-rest</artifactId>
103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.onosproject</groupId>
107 <artifactId>onos-rest</artifactId>
108 <version>${project.version}</version>
109 <scope>test</scope>
110 <classifier>tests</classifier>
111 </dependency>
Priyanka Bb977f562016-07-22 13:02:03 +0530112 </dependencies>
113 <build>
114 <plugins>
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 <extensions>true</extensions>
119 <configuration>
120 <instructions>
121 <_wab>src/main/resources/</_wab>
122 <Bundle-SymbolicName>
123 ${project.groupId}.${project.artifactId}
124 </Bundle-SymbolicName>
125 <Import-Package>
126 *,org.glassfish.jersey.servlet
127 </Import-Package>
128 <Web-ContextPath>${web.context}</Web-ContextPath>
129 </instructions>
130 </configuration>
131 </plugin>
132 </plugins>
133 </build>
134</project>