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> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 24 | <artifactId>onos-dependencies</artifactId> |
| 25 | <version>1.8.0</version> |
| 26 | <relativePath/><!-- parent is remote --> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-app-calendar</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 30 | <version>1.9.0-SNAPSHOT</version> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
| 32 | |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 33 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 34 | <description>ONOS simple calendaring REST interface for intents |
| 35 | </description> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 36 | |
| 37 | <properties> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 38 | <onos.version>1.8.0</onos.version> |
Thomas Vachuska | c83f3d3 | 2015-04-14 23:27:44 -0700 | [diff] [blame] | 39 | <onos.app.name>org.onosproject.calendar</onos.app.name> |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 40 | <onos.app.origin>ON.Lab</onos.app.origin> |
| 41 | <onos.app.title>Intents Calendar App</onos.app.title> |
| 42 | <onos.app.category>Utility</onos.app.category> |
| 43 | <onos.app.url>http://onosproject.org</onos.app.url> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 44 | <web.context>/onos/calendar</web.context> |
| 45 | </properties> |
| 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onlab-rest</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 51 | <version>${onos.version}</version> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 55 | <groupId>org.glassfish.jersey.containers</groupId> |
| 56 | <artifactId>jersey-container-servlet</artifactId> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 59 | <groupId>org.osgi</groupId> |
| 60 | <artifactId>org.osgi.core</artifactId> |
| 61 | </dependency> |
| 62 | |
Konstantinos Kanonakis | 35e9eb0 | 2016-06-06 16:38:53 -0500 | [diff] [blame] | 63 | |
| 64 | <!-- Note: version intentionally not in sync with ${project.version}. |
| 65 | ONOS no longer publishes shaded thirdparty bundle. --> |
| 66 | <dependency> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 67 | <groupId>org.onosproject</groupId> |
| 68 | <artifactId>onlab-thirdparty</artifactId> |
Yuta HIGUCHI | 631a5d8 | 2016-06-27 10:03:00 -0700 | [diff] [blame] | 69 | <version>1.5.0</version> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 70 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 71 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onlab-misc</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 75 | <version>${onos.version}</version> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 76 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 77 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onlab-junit</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 81 | <version>${onos.version}</version> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 82 | <scope>test</scope> |
| 83 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 84 | |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 85 | <dependency> |
| 86 | <groupId>org.onosproject</groupId> |
| 87 | <artifactId>onos-cli</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 88 | <version>${onos.version}</version> |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.apache.karaf.shell</groupId> |
| 92 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 93 | </dependency> |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 94 | </dependencies> |
| 95 | |
| 96 | <build> |
| 97 | <plugins> |
| 98 | <plugin> |
| 99 | <groupId>org.apache.felix</groupId> |
| 100 | <artifactId>maven-bundle-plugin</artifactId> |
| 101 | <extensions>true</extensions> |
| 102 | <configuration> |
| 103 | <instructions> |
| 104 | <_wab>src/main/webapp/</_wab> |
| 105 | <Bundle-SymbolicName> |
| 106 | ${project.groupId}.${project.artifactId} |
| 107 | </Bundle-SymbolicName> |
| 108 | <Import-Package> |
| 109 | org.slf4j, |
| 110 | org.osgi.framework, |
| 111 | javax.ws.rs,javax.ws.rs.core, |
Jian Li | 313c27b | 2016-03-24 14:13:25 -0700 | [diff] [blame] | 112 | org.glassfish.jersey, |
| 113 | org.glassfish.jersey.servlet, |
Hongtao Yin | e0e6de0 | 2015-03-17 21:08:43 -0700 | [diff] [blame] | 114 | org.onlab.packet.*, |
| 115 | org.onlab.rest.*, |
| 116 | org.onosproject.* |
| 117 | </Import-Package> |
| 118 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 119 | </instructions> |
| 120 | </configuration> |
| 121 | </plugin> |
| 122 | </plugins> |
| 123 | </build> |
| 124 | |
| 125 | </project> |