aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-01 12:07:31 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-01 12:07:31 +0530
commitdf8da036fc745ebcc9c0a6d26947ea9193172f34 (patch)
tree9f303e040516e4b49fedd3625dbc271801ebba73
parent27200ed8a743abe15e90ff2e4c60f06df6befe8a (diff)
VTP: grpc client
Issue-ID: VNFSDK-304 Change-Id: Ic0d2773443e36fc1aabdc61a104add289015dd3d Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
-rw-r--r--grpc/grpc-client/pom.xml38
-rw-r--r--grpc/pom.xml1
2 files changed, 39 insertions, 0 deletions
diff --git a/grpc/grpc-client/pom.xml b/grpc/grpc-client/pom.xml
new file mode 100644
index 00000000..58bc7671
--- /dev/null
+++ b/grpc/grpc-client/pom.xml
@@ -0,0 +1,38 @@
+<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.cli</groupId>
+ <artifactId>oclip-grpc</artifactId>
+ <version>1.0.0</version>
+ </parent>
+ <artifactId>oclip-grpc-client</artifactId>
+ <name>oclip/grpc/client</name>
+ <packaging>jar</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>org.onap.cli</groupId>
+ <artifactId>oclip-grpc-stub</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ <mainClass>org.onap.cli.grpc.client.OpenRemoteCli</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project> \ No newline at end of file
diff --git a/grpc/pom.xml b/grpc/pom.xml
index 964b85c9..187aa03d 100644
--- a/grpc/pom.xml
+++ b/grpc/pom.xml
@@ -28,6 +28,7 @@
<modules>
<module>grpc-stub</module>
<module>grpc-server</module>
+ <module>grpc-client</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>