diff options
author | lizi00164331 <li.zi30@zte.com.cn> | 2017-09-05 17:37:54 +0800 |
---|---|---|
committer | lizi00164331 <li.zi30@zte.com.cn> | 2017-09-05 17:37:54 +0800 |
commit | 8aaddf4913dd792402331f6e9424067a78246c18 (patch) | |
tree | 0414cc82ab6fab5075a94ee8e784b0b20e305550 /portal/pom.xml | |
parent | 71ef7dd040b057abb85521caeff0cf9154647086 (diff) |
Try to fix the daily builed failed bug.
change the esr catagory name to portal, Fix the pom definition.
Change-Id: I21861aba0fe9b7d0528c5ffcb220d6e6096efcc4
Issue-ID: AAI-224
Signed-off-by: lizi00164331 <li.zi30@zte.com.cn>
Diffstat (limited to 'portal/pom.xml')
-rw-r--r-- | portal/pom.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/portal/pom.xml b/portal/pom.xml new file mode 100644 index 0000000..aa63a25 --- /dev/null +++ b/portal/pom.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Copyright 2016-2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <groupId>org.onap.aai.esr-gui</groupId> + <artifactId>aai-esr-gui-parent</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>aai-esr-gui-portal</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>war</packaging> + <name>esr-gui/portal</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + </configuration> + </plugin> + </plugins> + </build> +</project> |