j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
j180240 | 43c58b2 | 2016-09-20 16:59:10 +0800 | [diff] [blame] | 2 | <!-- |
| 3 | Copyright 2016 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 | --> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 20 | <parent> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 21 | <groupId>org.openo.gso.gui</groupId> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 22 | <artifactId>service-gateway-root</artifactId> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 23 | <version>1.0.0-SNAPSHOT</version> |
| 24 | </parent> |
| 25 | |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 26 | <artifactId>service-gateway-service</artifactId> |
| 27 | <name>ServiceGatewayService</name> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 28 | <packaging>war</packaging> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 29 | <properties> |
| 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 31 | <cxf.version>3.1.6</cxf.version> |
| 32 | <slf4j.version>1.6.1</slf4j.version> |
| 33 | <maven.test.skip>false</maven.test.skip> |
| 34 | <maven.test.failure.ignore>false</maven.test.failure.ignore> |
| 35 | </properties> |
| 36 | |
| 37 | <profiles> |
| 38 | <profile> |
| 39 | <id>all-tests</id> |
| 40 | <properties> |
| 41 | <build.profile.id>all-tests</build.profile.id> |
| 42 | <skip.unit.tests>false</skip.unit.tests> |
| 43 | </properties> |
| 44 | </profile> |
| 45 | </profiles> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 46 | <build> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 47 | <finalName>ROOT</finalName> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 48 | <plugins> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 49 | <plugin> |
| 50 | <groupId>org.apache.maven.plugins</groupId> |
| 51 | <artifactId>maven-compiler-plugin</artifactId> |
| 52 | <version>3.1</version> |
| 53 | <configuration> |
| 54 | <source>1.8</source> |
| 55 | <target>1.8</target> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | <!-- Used for unit tests --> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-surefire-plugin</artifactId> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 62 | <version>2.19.1</version> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 63 | <configuration> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 64 | <forkMode>always</forkMode> |
| 65 | <argLine>${surefireArgLine}</argLine> |
| 66 | <skip>${maven.test.skip}</skip> |
| 67 | <!-- |
| 68 | <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore> |
| 69 | --> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 70 | <testFailureIgnore>true</testFailureIgnore> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 71 | <!-- Excludes integration tests when unit tests are run. --> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 72 | <excludes> |
j00302280 | 4aa52a7 | 2016-09-26 12:56:23 +0800 | [diff] [blame] | 73 | <exclude>**/IT*.java</exclude> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 74 | </excludes> |
| 75 | </configuration> |
| 76 | </plugin> |
j180240 | d089cf2 | 2016-09-14 15:00:54 +0800 | [diff] [blame] | 77 | </plugins> |
| 78 | </build> |
| 79 | </project> |