diff options
author | a.sreekumar <ajith.sreekumar@est.tech> | 2020-03-20 18:30:43 +0000 |
---|---|---|
committer | a.sreekumar <ajith.sreekumar@est.tech> | 2020-03-23 17:23:41 +0000 |
commit | f46af3394f85598eaa718f22312f9b7a6485c636 (patch) | |
tree | fdc1120cc3650e050f5215ffb66a51e40e2c395b /packages | |
parent | 2d56e9183b619893e33705a77da0ce0c15d6e74c (diff) |
Adding example for APEX gRPC plugin for CDS interaction
Change-Id: I8361eb0cbe74c3548ca98f3005bc37f5a1f91747
Issue-ID: POLICY-2436
Signed-off-by: a.sreekumar <ajith.sreekumar@est.tech>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/apex-pdp-package-full/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/apex-pdp-package-full/pom.xml b/packages/apex-pdp-package-full/pom.xml index 919ec5d4a..6710c6ee3 100644 --- a/packages/apex-pdp-package-full/pom.xml +++ b/packages/apex-pdp-package-full/pom.xml @@ -267,6 +267,11 @@ <artifactId>examples-onap-bbs</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.onap.policy.apex-pdp.examples</groupId> + <artifactId>examples-grpc</artifactId> + <version>${project.version}</version> + </dependency> </dependencies> <build> @@ -446,6 +451,24 @@ <outputDirectory>${project.build.directory}/etc</outputDirectory> <includes>/app-version.txt</includes> </artifactItem> + <artifactItem> + <groupId>org.onap.policy.apex-pdp.examples</groupId> + <artifactId>examples-grpc</artifactId> + <version>${project.version}</version> + <type>jar</type> + <overWrite>false</overWrite> + <outputDirectory>${project.build.directory}</outputDirectory> + <includes>etc/**/*,examples/**/*</includes> + </artifactItem> + <artifactItem> + <groupId>org.onap.policy.apex-pdp.examples</groupId> + <artifactId>examples-grpc</artifactId> + <version>${project.version}</version> + <type>jar</type> + <overWrite>false</overWrite> + <outputDirectory>${project.build.directory}/examples/models/APEXgRPC</outputDirectory> + <includes>APEXgRPCPolicy.json</includes> + </artifactItem> </artifactItems> <overWriteReleases>true</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> |