diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 78 |
1 files changed, 78 insertions, 0 deletions
@@ -0,0 +1,78 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE) + + 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="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"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.onap.oom</groupId> + <artifactId>registrator</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>mvn-golang</packaging> + + <name>Kube2msb Registrator</name> + <description>Kube2msb registrator listens kubernetes events and register onap microservices to MSB.</description> + + <build> + <plugins> + <plugin> + <groupId>com.igormaznitsa</groupId> + <artifactId>mvn-golang-wrapper</artifactId> + <version>2.1.6</version> + <extensions>true</extensions> + <configuration> + <disableSdkDownload>true</disableSdkDownload> + <goVersion>1.9</goVersion> + <useEnvVars>true</useEnvVars> + <env> + <GOPATH>${basedir}</GOPATH> + <CGO_ENABLED>0</CGO_ENABLED> + </env> + <sources>${basedir}/src/kube2msb</sources> + <targetArch>amd64</targetArch> + <targetOs>linux</targetOs> + </configuration> + <executions> + <execution> + <id>default-build</id> + <goals> + <goal>build</goal> + </goals> + <configuration> + <resultName>kube2msb</resultName> + </configuration> + </execution> + <execution> + <id>default-test</id> + <configuration> + <buildFlags> + <flag>-v</flag> + </buildFlags> + <directory>${basedir}/src/kube2msb</directory> + </configuration> + </execution> + <execution> + <id>default-mvninstall</id> + <goals> + <goal>mvninstall</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project>
\ No newline at end of file |