“shentao” | ee2ca98 | 2016-09-18 15:38:21 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
“shentao” | 5a3eed4 | 2016-09-23 13:12:04 +0800 | [diff] [blame] | 3 | Copyright 2016, CMCC Technologies Co., Ltd. |
“shentao” | ee2ca98 | 2016-09-18 15:38:21 +0800 | [diff] [blame] | 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. |
“shentao” | ee2ca98 | 2016-09-18 15:38:21 +0800 | [diff] [blame] | 16 | --> |
| 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/maven-v4_0_0.xsd"> |
| 19 | <parent> |
| 20 | <groupId>org.openo.gso.gui</groupId> |
| 21 | <artifactId>openo-portal</artifactId> |
| 22 | <version>1.0.0-SNAPSHOT</version> |
| 23 | </parent> |
| 24 | |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <artifactId>portal-package</artifactId> |
| 27 | <packaging>war</packaging> |
| 28 | |
| 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>org.openo.gso.gui</groupId> |
| 32 | <artifactId>portal-common</artifactId> |
| 33 | <version>1.0.0-SNAPSHOT</version> |
| 34 | <type>war</type> |
| 35 | </dependency> |
| 36 | </dependencies> |
| 37 | |
| 38 | <build> |
| 39 | <finalName>open-portal</finalName> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.maven.plugins</groupId> |
| 43 | <artifactId>maven-war-plugin</artifactId> |
| 44 | <configuration> |
| 45 | <packagingExcludes>WEB-INF/web.xml</packagingExcludes> |
| 46 | <overlays> |
| 47 | <overlay> |
| 48 | <groupId>org.openo.gso.gui</groupId> |
| 49 | <artifactId>portal-common</artifactId> |
| 50 | </overlay> |
| 51 | </overlays> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | </project> |