Jonathan Hart | ea75084 | 2015-04-23 17:44:49 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 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/xsd/maven-4.0.0.xsd"> |
| 20 | <parent> |
| 21 | <artifactId>onos-apps</artifactId> |
| 22 | <groupId>org.onosproject</groupId> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 23 | <version>1.4.0-SNAPSHOT</version> |
Jonathan Hart | ea75084 | 2015-04-23 17:44:49 -0700 | [diff] [blame] | 24 | <relativePath>../pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <artifactId>onos-app-cordfabric</artifactId> |
| 29 | |
| 30 | <packaging>bundle</packaging> |
| 31 | <description>Simple fabric application for CORD</description> |
| 32 | |
| 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.cordfabric</onos.app.name> |
Jonathan Hart | 443ebed | 2015-05-05 14:02:12 -0700 | [diff] [blame] | 35 | <web.context>/onos/cordfabric</web.context> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 36 | <api.version>1.0.0</api.version> |
| 37 | <api.title>ONOS CORD Fabric REST API</api.title> |
| 38 | <api.description> |
| 39 | APIs for interacting with the CORD Fabric application. |
| 40 | </api.description> |
| 41 | <api.package>org.onosproject.cordfabric</api.package> |
Jonathan Hart | ea75084 | 2015-04-23 17:44:49 -0700 | [diff] [blame] | 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-cli</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
| 52 | <groupId>org.apache.karaf.shell</groupId> |
| 53 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 54 | </dependency> |
Jonathan Hart | 443ebed | 2015-05-05 14:02:12 -0700 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-rest</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
| 62 | <artifactId>onlab-rest</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>javax.ws.rs</groupId> |
| 67 | <artifactId>jsr311-api</artifactId> |
| 68 | <version>1.1.1</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>com.sun.jersey</groupId> |
| 72 | <artifactId>jersey-servlet</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>com.fasterxml.jackson.core</groupId> |
| 76 | <artifactId>jackson-databind</artifactId> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | <artifactId>jackson-annotations</artifactId> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.osgi</groupId> |
| 86 | <artifactId>org.osgi.compendium</artifactId> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.osgi</groupId> |
| 90 | <artifactId>org.osgi.core</artifactId> |
| 91 | </dependency> |
Jonathan Hart | ea75084 | 2015-04-23 17:44:49 -0700 | [diff] [blame] | 92 | </dependencies> |
Jonathan Hart | 443ebed | 2015-05-05 14:02:12 -0700 | [diff] [blame] | 93 | |
| 94 | <build> |
| 95 | <plugins> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.felix</groupId> |
| 98 | <artifactId>maven-bundle-plugin</artifactId> |
| 99 | <extensions>true</extensions> |
| 100 | <configuration> |
| 101 | <instructions> |
| 102 | <_wab>src/main/webapp/</_wab> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 103 | <Include-Resource> |
| 104 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 105 | {maven-resources} |
| 106 | </Include-Resource> |
Jonathan Hart | 443ebed | 2015-05-05 14:02:12 -0700 | [diff] [blame] | 107 | <Bundle-SymbolicName> |
| 108 | ${project.groupId}.${project.artifactId} |
| 109 | </Bundle-SymbolicName> |
| 110 | <Import-Package> |
| 111 | org.slf4j, |
| 112 | org.osgi.framework, |
| 113 | javax.ws.rs, |
| 114 | javax.ws.rs.core, |
| 115 | com.sun.jersey.api.core, |
| 116 | com.sun.jersey.spi.container.servlet, |
| 117 | com.sun.jersey.server.impl.container.servlet, |
| 118 | com.fasterxml.jackson.databind, |
| 119 | com.fasterxml.jackson.databind.node, |
| 120 | org.apache.karaf.shell.commands, |
| 121 | org.apache.commons.lang.math.*, |
| 122 | com.google.common.*, |
| 123 | org.onlab.packet.*, |
| 124 | org.onlab.rest.*, |
| 125 | org.onosproject.*, |
| 126 | org.onlab.util.*, |
| 127 | org.jboss.netty.util.* |
| 128 | </Import-Package> |
| 129 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 130 | </instructions> |
| 131 | </configuration> |
| 132 | </plugin> |
| 133 | </plugins> |
| 134 | </build> |
Jonathan Hart | ea75084 | 2015-04-23 17:44:49 -0700 | [diff] [blame] | 135 | </project> |