blob: e1c0553e27e5cee8fbaf965e9aa6f0d26ce9fe84 [file] [log] [blame]
Thomas Vachuska140d5852014-10-16 12:17:45 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
9 <artifactId>onos-apps</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-app-calendar</artifactId>
15 <packaging>bundle</packaging>
16
17 <description>ONOS simple calendaring REST interface for intents</description>
18
19 <properties>
20 <web.context>/onos/calendar</web.context>
21 </properties>
22
23 <dependencies>
24 <dependency>
25 <groupId>org.onlab.onos</groupId>
26 <artifactId>onlab-rest</artifactId>
27 <version>${project.version}</version>
28 </dependency>
29
30 <dependency>
31 <groupId>com.sun.jersey</groupId>
32 <artifactId>jersey-servlet</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>com.sun.jersey.jersey-test-framework</groupId>
36 <artifactId>jersey-test-framework-core</artifactId>
37 <version>1.18.1</version>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>com.sun.jersey.jersey-test-framework</groupId>
42 <artifactId>jersey-test-framework-grizzly2</artifactId>
43 <version>1.18.1</version>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.core</artifactId>
49 </dependency>
50 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
57 <extensions>true</extensions>
58 <configuration>
59 <instructions>
60 <_wab>src/main/webapp/</_wab>
61 <Bundle-SymbolicName>
62 ${project.groupId}.${project.artifactId}
63 </Bundle-SymbolicName>
64 <Import-Package>
65 org.osgi.framework,
66 javax.ws.rs,javax.ws.rs.core,
67 com.sun.jersey.api.core,
68 com.sun.jersey.spi.container.servlet,
69 com.sun.jersey.server.impl.container.servlet,
70 org.onlab.packet.*,
71 org.onlab.rest.*,
72 org.onlab.onos.*
73 </Import-Package>
74 <Web-ContextPath>${web.context}</Web-ContextPath>
75 </instructions>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80
81</project>