From 46525e3d52cfba3197f81d9afb29485ec4f7892a Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Sat, 1 Sep 2018 12:19:48 +0530 Subject: VTP: Enable grpc part of deployment Issue-ID: VNFSDK-304 Change-Id: Iafc855838cb59f9550abb4ddbe4b567caa251c07 Signed-off-by: Kanagaraj Manickam k00365106 --- deployment/zip/pom.xml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'deployment/zip') diff --git a/deployment/zip/pom.xml b/deployment/zip/pom.xml index eba890af..fa370ebb 100644 --- a/deployment/zip/pom.xml +++ b/deployment/zip/pom.xml @@ -93,6 +93,8 @@ "${project.build.directory}/../../../products/target/lib/") fileset(dir: "${project.build.directory}/../../../profiles/target/lib/") + fileset(dir: + "${project.build.directory}/../../../grpc/target/lib/") } ant.copy(todir: "${deployUnzip}/conf") { -- cgit 1.2.3-korg From d6230a718e176f02bc91314a0cd96a49820498fb Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Wed, 5 Sep 2018 11:34:21 +0530 Subject: OCLIP: Change the order of classpath Issue-ID: CLI-123 Change-Id: Ic75c7eca2f1b2fa7f58023c6d180c30121ffc6d3 Signed-off-by: Kanagaraj Manickam k00365106 --- deployment/zip/src/main/release/bin/oclip.sh | 2 +- .../src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) (limited to 'deployment/zip') diff --git a/deployment/zip/src/main/release/bin/oclip.sh b/deployment/zip/src/main/release/bin/oclip.sh index 90fcfc53..a841c926 100755 --- a/deployment/zip/src/main/release/bin/oclip.sh +++ b/deployment/zip/src/main/release/bin/oclip.sh @@ -29,7 +29,7 @@ else SEP=: fi -CLASSPATH=${OPEN_CLI_HOME}${SEP}${OPEN_CLI_HOME}/conf${SEP}${OPEN_CLI_HOME}/docs +CLASSPATH=${OPEN_CLI_HOME}/conf${SEP}${OPEN_CLI_HOME}${SEP}${OPEN_CLI_HOME}/docs for entry in "$OPEN_CLI_HOME/lib"/* do CLASSPATH=${CLASSPATH}${SEP}${entry} diff --git a/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java b/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java index 7b74e6ca..8969c2b6 100644 --- a/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java +++ b/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java @@ -21,7 +21,6 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import org.onap.cli.fw.cmd.OnapCommand; import org.onap.cli.fw.cmd.conf.OnapCommandCmdConstants; @@ -29,9 +28,7 @@ import org.onap.cli.fw.cmd.schema.OnapCommandSchemaCmdLoader; import org.onap.cli.fw.error.OnapCommandException; import org.onap.cli.fw.error.OnapCommandExecutionFailed; import org.onap.cli.fw.input.OnapCommandParameter; -import org.onap.cli.fw.output.OnapCommandResultType; import org.onap.cli.fw.schema.OnapCommandSchema; -import org.onap.cli.fw.utils.OnapCommandUtils; /** * Hello world. -- cgit 1.2.3-korg