diff options
author | Xiuchao Wu <xiuchao.wu@huawei.com> | 2016-09-22 16:54:06 +0100 |
---|---|---|
committer | Xiuchao Wu <xiuchao.wu@huawei.com> | 2016-09-22 16:54:06 +0100 |
commit | 1561cc66e5154d266e513e1efc97764ebbc7d42a (patch) | |
tree | 92da09490fc12a182be0da0c12c96b1453838401 /openo-portal | |
parent | 327936ce2a1e53dd29d1b39322ce01069f134c0e (diff) |
add portal-lifecyclemgr into the pom file of openo-portal
Change-Id: Ibd69e55ce654fe1cd94203f2684f04b5157fd85d
Signed-off-by: Xiuchao Wu <xiuchao.wu@huawei.com>
Diffstat (limited to 'openo-portal')
-rw-r--r-- | openo-portal/pom.xml | 1 | ||||
-rw-r--r-- | openo-portal/portal-lifecyclemgr/pom.xml | 22 |
2 files changed, 19 insertions, 4 deletions
diff --git a/openo-portal/pom.xml b/openo-portal/pom.xml index 4f6dbef6..75007e35 100644 --- a/openo-portal/pom.xml +++ b/openo-portal/pom.xml @@ -34,5 +34,6 @@ <module>portal-resmgr</module> <module>portal-extsys</module> <module>portal-auth</module> + <module>portal-lifecyclemgr</module> </modules> </project> diff --git a/openo-portal/portal-lifecyclemgr/pom.xml b/openo-portal/portal-lifecyclemgr/pom.xml index e48092b7..853fe11b 100644 --- a/openo-portal/portal-lifecyclemgr/pom.xml +++ b/openo-portal/portal-lifecyclemgr/pom.xml @@ -22,8 +22,22 @@ <artifactId>openo-portal</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> - <modelVersion>4.0.0</modelVersion> - <artifactId>portal-lifecyclemgr</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>war</packaging> + + <modelVersion>4.0.0</modelVersion> + <artifactId>portal-lifecyclemgr</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>war</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + </configuration> + </plugin> + </plugins> + </build> + </project> |