diff options
author | Bin Yang <bin.yang@windriver.com> | 2017-02-22 12:58:11 +0800 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2017-02-22 14:43:31 +0800 |
commit | 394cf8e3619ec4ddab4adf1608336feb39c1c6fb (patch) | |
tree | 33ee6d773ff7620c761390fa5165e3d2dbd51655 /pom.xml | |
parent | cff3fa9ea142ee496eb80a2db1204e9fe2d98e1d (diff) |
Setup micro-service of newton driver
Change-Id: I86dd5d3032eb70d0c1c1c23d179de2a0a2a1fdeb
Issue-Id: MULTIVIM-18
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..8557cd94 --- /dev/null +++ b/pom.xml @@ -0,0 +1,69 @@ +<?xml version="1.0"?> +<!-- + Copyright (c) 2017 Wind River Systems, Inc. + + 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. +--> +<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"> + + <parent> + <groupId>org.openo.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../oparent</relativePath> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.openo.multivimdriver.openstack</groupId> + <artifactId>multivimdriver-openstack-root</artifactId> + <version>1.1.0-SNAPSHOT</version> + <name>multivim-openstack</name> + <packaging>pom</packaging> + + <modules> + <module>newton</module> + </modules> + + <build> + <plugins> + <plugin> + <groupId>com.mycila</groupId> + <artifactId>license-maven-plugin</artifactId> + <version>2.3</version> + <configuration> + <includes> + <include>**\*.java</include> + </includes> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.3</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.7</version> + <configuration> + <retryFailedDeploymentCount>2</retryFailedDeploymentCount> + </configuration> + </plugin> + </plugins> + </build> +</project> |