blob: e6b798710155839e6701399a9d5178437887bfcd [file] [log] [blame]
Thomas Vachuska140d5852014-10-16 12:17:45 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
Thomas Vachuska140d5852014-10-16 12:17:45 -070020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onos-apps</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>onos-app-calendar</artifactId>
33 <packaging>bundle</packaging>
34
35 <description>ONOS simple calendaring REST interface for intents</description>
36
37 <properties>
38 <web.context>/onos/calendar</web.context>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onlab.onos</groupId>
44 <artifactId>onlab-rest</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>com.sun.jersey</groupId>
50 <artifactId>jersey-servlet</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>com.sun.jersey.jersey-test-framework</groupId>
54 <artifactId>jersey-test-framework-core</artifactId>
55 <version>1.18.1</version>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>com.sun.jersey.jersey-test-framework</groupId>
60 <artifactId>jersey-test-framework-grizzly2</artifactId>
61 <version>1.18.1</version>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.osgi</groupId>
66 <artifactId>org.osgi.core</artifactId>
67 </dependency>
68 </dependencies>
69
70 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 <extensions>true</extensions>
76 <configuration>
77 <instructions>
78 <_wab>src/main/webapp/</_wab>
79 <Bundle-SymbolicName>
80 ${project.groupId}.${project.artifactId}
81 </Bundle-SymbolicName>
82 <Import-Package>
83 org.osgi.framework,
84 javax.ws.rs,javax.ws.rs.core,
85 com.sun.jersey.api.core,
86 com.sun.jersey.spi.container.servlet,
87 com.sun.jersey.server.impl.container.servlet,
88 org.onlab.packet.*,
89 org.onlab.rest.*,
90 org.onlab.onos.*
91 </Import-Package>
92 <Web-ContextPath>${web.context}</Web-ContextPath>
93 </instructions>
94 </configuration>
95 </plugin>
96 </plugins>
97 </build>
98
99</project>