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.oparent</groupId> |
| 20 | <artifactId>oparent</artifactId> |
| 21 | <version>1.1.0-SNAPSHOT</version> |
| 22 | <relativePath>../oparent</relativePath> |
| 23 | </parent> |
victor.gao | b23fdd8 | 2017-02-22 15:37:35 +0800 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <groupId>org.openo.vnf-sdk.validate-lc-test</groupId> |
sukesh a c | f6cebaa | 2017-02-08 06:41:00 +0000 | [diff] [blame] | 26 | <artifactId>vnf-sdk-validate-lc-test</artifactId> |
| 27 | <version>1.1.0-SNAPSHOT</version> |
| 28 | <packaging>pom</packaging> |
| 29 | <name>vnf-sdk-validate-lc-test</name> |
luxin | 7b63090 | 2017-03-15 16:49:25 +0800 | [diff] [blame] | 30 | |
| 31 | <properties> |
| 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 33 | <package.name>lifecycle-test-service</package.name> |
| 34 | </properties> |
sukesh a c | f6cebaa | 2017-02-08 06:41:00 +0000 | [diff] [blame] | 35 | <modules> |
| 36 | <module>lifecycle-test</module> |
luxin | 7b63090 | 2017-03-15 16:49:25 +0800 | [diff] [blame] | 37 | <module>deployment</module> |
sukesh a c | f6cebaa | 2017-02-08 06:41:00 +0000 | [diff] [blame] | 38 | </modules> |
luxin | 7b63090 | 2017-03-15 16:49:25 +0800 | [diff] [blame] | 39 | |
| 40 | <profiles> |
| 41 | <profile> |
| 42 | <id>jdk-1.8</id> |
| 43 | <activation> |
| 44 | <activeByDefault>true</activeByDefault> |
| 45 | <jdk>1.8</jdk> |
| 46 | </activation> |
| 47 | <properties> |
| 48 | <maven.compiler.source>1.8</maven.compiler.source> |
| 49 | <maven.compiler.target>1.8</maven.compiler.target> |
| 50 | <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> |
| 51 | </properties> |
| 52 | </profile> |
| 53 | </profiles> |
| 54 | |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-surefire-plugin</artifactId> |
| 60 | <version>2.19</version> |
| 61 | <configuration> |
| 62 | <testFailureIgnore>true</testFailureIgnore> |
| 63 | <includes> |
| 64 | <include>**/*Spec*</include> |
| 65 | <include>**/Test*.java</include> |
| 66 | <include>**/*Test.java</include> |
| 67 | <include>**/*TestCase.java</include> |
| 68 | <include>**/Test*.scala</include> |
| 69 | <include>**/*Test.scala</include> |
| 70 | <include>**/*TestCase.scala</include> |
| 71 | </includes> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | <plugin> |
| 75 | <groupId>org.codehaus.mojo</groupId> |
| 76 | <artifactId>cobertura-maven-plugin</artifactId> |
| 77 | <version>2.7</version> |
| 78 | <configuration> |
| 79 | <formats> |
| 80 | <format>html</format> |
| 81 | <format>xml</format> |
| 82 | </formats> |
| 83 | <instrumentation> |
| 84 | <excludes> |
| 85 | <exclude>org/**/*Test.class</exclude> |
| 86 | </excludes> |
| 87 | </instrumentation> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
sukesh a c | f6cebaa | 2017-02-08 06:41:00 +0000 | [diff] [blame] | 92 | </project> |