summaryrefslogtreecommitdiffstats
path: root/multivimbroker/pom.xml
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2017-02-22 11:15:28 +0800
committerBin Yang <bin.yang@windriver.com>2017-02-22 14:15:17 +0800
commitb1b0386b5ed988fbbf25e326c3d0ce951eff07cd (patch)
treef4342a484936d2d29032a4581f37f8e11a6d8c92 /multivimbroker/pom.xml
parentdfa189f340da5fbddcee75c7efa81c2e58a1d50d (diff)
Setup micro-service of multivim broker
Change-Id: I692cd7f79460ac2a782e995031196ea8396e68ca Issue-Id: MULTIVIM-16 Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'multivimbroker/pom.xml')
-rw-r--r--multivimbroker/pom.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/multivimbroker/pom.xml b/multivimbroker/pom.xml
new file mode 100644
index 0000000..d855ba3
--- /dev/null
+++ b/multivimbroker/pom.xml
@@ -0,0 +1,50 @@
+<?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.broker</groupId>
+ <artifactId>multivimbroker</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>multivim/multivimbroker</name>
+ <description>multivim broker</description>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptors>
+ <descriptor>assembly.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>