sukesh a c | f6cebaa | 2017-02-08 06:41:00 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright 2016-2017 Huawei Technologies Co., Ltd. |
| 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 18 | <parent> |
| 19 | <groupId>org.openo.vnf-sdk.validate-lc-test</groupId> |
| 20 | <artifactId>vnf-sdk-validate-lc-test</artifactId> |
| 21 | <version>1.1.0-SNAPSHOT</version> |
| 22 | </parent> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <artifactId>lifecycle-test</artifactId> |
| 25 | <version>1.1.0-SNAPSHOT</version> |
| 26 | <packaging>war</packaging> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-war-plugin</artifactId> |
| 32 | <configuration> |
| 33 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 34 | </configuration> |
| 35 | </plugin> |
| 36 | </plugins> |
| 37 | </build> |
| 38 | <name>vnf-sdk-validate-lc-test/lifecycle-test</name> |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>javax.ws.rs</groupId> |
| 42 | <artifactId>javax.ws.rs-api</artifactId> |
| 43 | <version>2.0.1</version> |
| 44 | </dependency> |
sukesh a c | ec08b3b | 2017-02-20 10:53:24 +0000 | [diff] [blame^] | 45 | <!-- UT --> |
| 46 | <dependency> |
| 47 | <groupId>junit</groupId> |
| 48 | <artifactId>junit</artifactId> |
| 49 | <version>4.10</version> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <!-- jersey --> |
| 53 | <dependency> |
| 54 | <groupId>org.glassfish.jersey.core</groupId> |
| 55 | <artifactId>jersey-server</artifactId> |
| 56 | <version>2.16</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.glassfish.jersey.media</groupId> |
| 60 | <artifactId>jersey-media-multipart</artifactId> |
| 61 | <version>2.16</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.glassfish.jersey.containers</groupId> |
| 65 | <artifactId>jersey-container-servlet-core</artifactId> |
| 66 | <version>2.16</version> |
| 67 | </dependency> |
sukesh a c | f6cebaa | 2017-02-08 06:41:00 +0000 | [diff] [blame] | 68 | </dependencies> |
| 69 | </project> |