blob: ba5ec66b359b6305bbef18d15cbc6f423cefaf1e [file] [log] [blame]
Hongtao Yine0e6de02015-03-17 21:08:43 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Li7f977082016-03-09 11:18:22 -08003 ~ Copyright 2014-2016 Open Networking Laboratory
Hongtao Yine0e6de02015-03-17 21:08:43 -07004 ~
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
Brian O'Connor32e74602015-03-17 21:30:27 -070024 <artifactId>onos-app-samples</artifactId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050025 <version>1.7.0-SNAPSHOT</version>
Hongtao Yine0e6de02015-03-17 21:08:43 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-calendar</artifactId>
30 <packaging>bundle</packaging>
31
Jian Li313c27b2016-03-24 14:13:25 -070032 <description>ONOS simple calendaring REST interface for intents
33 </description>
Hongtao Yine0e6de02015-03-17 21:08:43 -070034
35 <properties>
Thomas Vachuskac83f3d32015-04-14 23:27:44 -070036 <onos.app.name>org.onosproject.calendar</onos.app.name>
Jian Li7f977082016-03-09 11:18:22 -080037 <onos.app.origin>ON.Lab</onos.app.origin>
38 <onos.app.title>Intents Calendar App</onos.app.title>
39 <onos.app.category>Utility</onos.app.category>
40 <onos.app.url>http://onosproject.org</onos.app.url>
Hongtao Yine0e6de02015-03-17 21:08:43 -070041 <web.context>/onos/calendar</web.context>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onlab-rest</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50
51 <dependency>
Jian Li313c27b2016-03-24 14:13:25 -070052 <groupId>org.glassfish.jersey.containers</groupId>
53 <artifactId>jersey-container-servlet</artifactId>
Hongtao Yine0e6de02015-03-17 21:08:43 -070054 </dependency>
55 <dependency>
Hongtao Yine0e6de02015-03-17 21:08:43 -070056 <groupId>org.osgi</groupId>
57 <artifactId>org.osgi.core</artifactId>
58 </dependency>
59
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050060
61 <!-- Note: version intentionally not in sync with ${project.version}.
62 ONOS no longer publishes shaded thirdparty bundle. -->
63 <dependency>
Jian Li313c27b2016-03-24 14:13:25 -070064 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-thirdparty</artifactId>
Yuta HIGUCHI631a5d82016-06-27 10:03:00 -070066 <version>1.5.0</version>
Jian Li313c27b2016-03-24 14:13:25 -070067 </dependency>
Hongtao Yine0e6de02015-03-17 21:08:43 -070068
Jian Li313c27b2016-03-24 14:13:25 -070069 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onlab-misc</artifactId>
72 </dependency>
Hongtao Yine0e6de02015-03-17 21:08:43 -070073
Jian Li313c27b2016-03-24 14:13:25 -070074 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onlab-junit</artifactId>
77 <scope>test</scope>
78 </dependency>
Hongtao Yine0e6de02015-03-17 21:08:43 -070079
Jian Li313c27b2016-03-24 14:13:25 -070080 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-cli</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.karaf.shell</groupId>
87 <artifactId>org.apache.karaf.shell.console</artifactId>
88 </dependency>
Hongtao Yine0e6de02015-03-17 21:08:43 -070089 </dependencies>
90
91 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <extensions>true</extensions>
97 <configuration>
98 <instructions>
99 <_wab>src/main/webapp/</_wab>
100 <Bundle-SymbolicName>
101 ${project.groupId}.${project.artifactId}
102 </Bundle-SymbolicName>
103 <Import-Package>
104 org.slf4j,
105 org.osgi.framework,
106 javax.ws.rs,javax.ws.rs.core,
Jian Li313c27b2016-03-24 14:13:25 -0700107 org.glassfish.jersey,
108 org.glassfish.jersey.servlet,
Hongtao Yine0e6de02015-03-17 21:08:43 -0700109 org.onlab.packet.*,
110 org.onlab.rest.*,
111 org.onosproject.*
112 </Import-Package>
113 <Web-ContextPath>${web.context}</Web-ContextPath>
114 </instructions>
115 </configuration>
116 </plugin>
117 </plugins>
118 </build>
119
120</project>