Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 3 | ~ Copyright 2014-2016 Open Networking Laboratory |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 4 | ~ |
| 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'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 24 | <artifactId>onos-app-samples</artifactId> |
Konstantinos Kanonakis | 35e9eb0 | 2016-06-06 16:38:53 -0500 | [diff] [blame] | 25 | <version>1.7.0-SNAPSHOT</version> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-app-calendar</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 32 | <description>ONOS simple calendaring REST interface for intents |
| 33 | </description> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 34 | |
| 35 | <properties> |
Thomas Vachuska | c83f3d3 | 2015-04-14 23:27:44 -0700 | [diff] [blame] | 36 | <onos.app.name>org.onosproject.calendar</onos.app.name> |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 37 | <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 Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 41 | <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 Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 52 | <groupId>org.glassfish.jersey.containers</groupId> |
| 53 | <artifactId>jersey-container-servlet</artifactId> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 56 | <groupId>org.osgi</groupId> |
| 57 | <artifactId>org.osgi.core</artifactId> |
| 58 | </dependency> |
| 59 | |
Konstantinos Kanonakis | 35e9eb0 | 2016-06-06 16:38:53 -0500 | [diff] [blame] | 60 | |
| 61 | <!-- Note: version intentionally not in sync with ${project.version}. |
| 62 | ONOS no longer publishes shaded thirdparty bundle. --> |
| 63 | <dependency> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onlab-thirdparty</artifactId> |
Yuta HIGUCHI | 631a5d8 | 2016-06-27 10:03:00 -0700 | [diff] [blame] | 66 | <version>1.5.0</version> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 67 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 68 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
| 71 | <artifactId>onlab-misc</artifactId> |
| 72 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 73 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>org.onosproject</groupId> |
| 76 | <artifactId>onlab-junit</artifactId> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 79 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 80 | <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 Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 89 | </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 Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 107 | org.glassfish.jersey, |
| 108 | org.glassfish.jersey.servlet, |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 109 | 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> |