Jian Li | a118677 | 2018-07-27 18:06:41 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2018-present Open Networking Foundation |
| 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 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-apps-openstacktroubleshoot</artifactId> |
ONOS Jenkins User | f09ad74 | 2018-10-23 23:30:10 +0000 | [diff] [blame] | 25 | <version>1.14.2-SNAPSHOT</version> |
Jian Li | a118677 | 2018-07-27 18:06:41 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-apps-openstacktroubleshoot-app</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>SONA Openstack Troubleshoot Application</description> |
| 32 | |
| 33 | <properties> |
| 34 | <web.context>/onos/openstacktroubleshoot</web.context> |
| 35 | <api.version>1.0</api.version> |
| 36 | <api.title>OpenStack Troubleshoot API</api.title> |
| 37 | <api.description> |
| 38 | REST API for OpenStack Troubleshoot |
| 39 | </api.description> |
| 40 | <api.package>org.onosproject.openstacktroubleshoot.web</api.package> |
| 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-api</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
Jian Li | 0b93b00 | 2018-07-31 13:41:08 +0900 | [diff] [blame] | 53 | <artifactId>onos-apps-openstacknode-api</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-apps-openstacknetworking-api</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
Jian Li | a118677 | 2018-07-27 18:06:41 +0900 | [diff] [blame] | 65 | <artifactId>onos-apps-openstacktroubleshoot-api</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | |
| 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
Jian Li | 0b93b00 | 2018-07-31 13:41:08 +0900 | [diff] [blame] | 71 | <artifactId>onos-core-serializers</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
| 76 | <groupId>org.onosproject</groupId> |
Jian Li | a118677 | 2018-07-27 18:06:41 +0900 | [diff] [blame] | 77 | <artifactId>onos-rest</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
| 83 | <artifactId>onlab-rest</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
Jian Li | 0b93b00 | 2018-07-31 13:41:08 +0900 | [diff] [blame] | 86 | |
Jian Li | a118677 | 2018-07-27 18:06:41 +0900 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>javax.ws.rs</groupId> |
| 89 | <artifactId>javax.ws.rs-api</artifactId> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.onosproject</groupId> |
| 94 | <artifactId>onlab-osgi</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | </dependency> |
| 97 | |
| 98 | <dependency> |
| 99 | <groupId>org.onosproject</groupId> |
| 100 | <artifactId>onos-cli</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | |
| 104 | <dependency> |
| 105 | <groupId>com.fasterxml.jackson.core</groupId> |
| 106 | <artifactId>jackson-databind</artifactId> |
| 107 | </dependency> |
| 108 | |
| 109 | <dependency> |
| 110 | <groupId>com.fasterxml.jackson.core</groupId> |
| 111 | <artifactId>jackson-annotations</artifactId> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.apache.karaf.shell</groupId> |
| 115 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 116 | </dependency> |
| 117 | |
| 118 | <dependency> |
| 119 | <groupId>org.onosproject</groupId> |
| 120 | <artifactId>onos-api</artifactId> |
| 121 | <classifier>tests</classifier> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | |
| 125 | <dependency> |
| 126 | <groupId>com.google.guava</groupId> |
| 127 | <artifactId>guava-testlib</artifactId> |
| 128 | <scope>test</scope> |
| 129 | </dependency> |
| 130 | |
| 131 | <dependency> |
| 132 | <groupId>org.onosproject</groupId> |
| 133 | <artifactId>onlab-junit</artifactId> |
| 134 | <scope>test</scope> |
| 135 | </dependency> |
| 136 | |
| 137 | <dependency> |
| 138 | <groupId>org.easymock</groupId> |
| 139 | <artifactId>easymock</artifactId> |
| 140 | <scope>test</scope> |
| 141 | </dependency> |
| 142 | |
| 143 | <dependency> |
| 144 | <groupId>org.glassfish.jersey.core</groupId> |
| 145 | <artifactId>jersey-client</artifactId> |
| 146 | <scope>test</scope> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.glassfish.jersey.containers</groupId> |
| 150 | <artifactId>jersey-container-servlet</artifactId> |
| 151 | </dependency> |
| 152 | |
| 153 | <dependency> |
| 154 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 155 | <artifactId>jersey-test-framework-core</artifactId> |
| 156 | <scope>test</scope> |
| 157 | </dependency> |
| 158 | |
| 159 | <dependency> |
| 160 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 161 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
| 162 | <scope>test</scope> |
| 163 | </dependency> |
| 164 | |
| 165 | <dependency> |
| 166 | <groupId>org.onosproject</groupId> |
| 167 | <artifactId>onlab-osgi</artifactId> |
| 168 | <classifier>tests</classifier> |
| 169 | <scope>test</scope> |
| 170 | </dependency> |
| 171 | |
| 172 | <dependency> |
| 173 | <groupId>org.onosproject</groupId> |
| 174 | <artifactId>onos-rest</artifactId> |
| 175 | <version>${project.version}</version> |
| 176 | <classifier>tests</classifier> |
| 177 | <scope>test</scope> |
| 178 | </dependency> |
| 179 | |
| 180 | <dependency> |
| 181 | <groupId>org.glassfish.jersey.core</groupId> |
| 182 | <artifactId>jersey-common</artifactId> |
| 183 | <scope>test</scope> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.glassfish.jersey.inject</groupId> |
| 187 | <artifactId>jersey-hk2</artifactId> |
| 188 | <scope>test</scope> |
| 189 | </dependency> |
| 190 | </dependencies> |
| 191 | |
| 192 | <build> |
| 193 | <plugins> |
| 194 | <plugin> |
| 195 | <groupId>org.apache.felix</groupId> |
| 196 | <artifactId>maven-bundle-plugin</artifactId> |
| 197 | <extensions>true</extensions> |
| 198 | <configuration> |
| 199 | <instructions> |
| 200 | <_wab>src/main/webapp/</_wab> |
| 201 | <Include-Resource> |
| 202 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 203 | {maven-resources} |
| 204 | </Include-Resource> |
| 205 | <Bundle-SymbolicName> |
| 206 | ${project.groupId}.${project.artifactId} |
| 207 | </Bundle-SymbolicName> |
| 208 | <Import-Package> |
| 209 | *,org.glassfish.jersey.servlet |
| 210 | </Import-Package> |
| 211 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 212 | </instructions> |
| 213 | </configuration> |
| 214 | </plugin> |
| 215 | </plugins> |
| 216 | </build> |
| 217 | </project> |