aboutsummaryrefslogtreecommitdiffstats
path: root/kube2consul/pom.xml
diff options
context:
space:
mode:
authorHuabingZhao <zhao.huabing@zte.com.cn>2017-08-31 16:04:55 +0800
committerHuabingZhao <zhao.huabing@zte.com.cn>2017-08-31 16:09:58 +0800
commita7837a0ac51704003c6aacba2dacb8e64f681622 (patch)
treee350eb24e30d8523a222de0c4cc2cec0675035f1 /kube2consul/pom.xml
parentc0f3b093c704da85252044b3a177dbabab63c49a (diff)
remove kube2consul codes
Issue-Id: OOM-61 Change-Id: I4eb076835a051ed6bb3abbdcb90aafdf4d4a7149 Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'kube2consul/pom.xml')
-rw-r--r--kube2consul/pom.xml109
1 files changed, 0 insertions, 109 deletions
diff --git a/kube2consul/pom.xml b/kube2consul/pom.xml
deleted file mode 100644
index 3ab8ce7..0000000
--- a/kube2consul/pom.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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>
-
-
- <parent>
- <groupId>org.onap.oom.registrator</groupId>
- <artifactId>oom-registrator-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
-
-
- <groupId>org.onap.oom.registrator</groupId>
- <artifactId>kube2consul</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <properties>
- <app.exec.name>kube2consul</app.exec.name>
- </properties>
-
- <build>
- <sourceDirectory>${basedir}${file.separator}src</sourceDirectory>
- <directory>${basedir}${file.separator}bin</directory>
- <plugins>
- <plugin>
- <groupId>com.igormaznitsa</groupId>
- <artifactId>mvn-golang-wrapper</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-resources-dockerfile</id>
- <phase>process-resources</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${version.output}</outputDirectory>
- <includeEmptyDirs>true</includeEmptyDirs>
- <resources>
- <resource>
- <directory>${dockerFileDir}</directory>
- <filtering>false</filtering>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- </resources>
- <overwrite>true</overwrite>
- </configuration>
- </execution>
- <execution>
- <id>copy-resources-blueprint</id>
- <phase>process-resources</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${version.output}/blueprint</outputDirectory>
- <includeEmptyDirs>true</includeEmptyDirs>
- <resources>
- <resource>
- <directory>${blueprintFileDir}</directory>
- <filtering>false</filtering>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- </resources>
- <overwrite>true</overwrite>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copytolinux64</id>
- <goals>
- <goal>copy</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>com.zte.ums.zenap.msb.components</groupId>
- <artifactId>consul</artifactId>
- <type>tar.gz</type>
- <classifier>linux_amd64</classifier>
- </artifactItem>
- </artifactItems>
- <outputDirectory>${version.output}</outputDirectory>
- <overWriteReleases>false</overWriteReleases>
- <overWriteSnapshots>true</overWriteSnapshots>
- <stripVersion>true</stripVersion>
- <outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
-</project> \ No newline at end of file