blob: b118ad92d202e7abf5929818120a3d27fd5b71c9 [file] [log] [blame]
Eric Debeau1af30532019-05-14 17:45:22 +00001.. This work is licensed under a
2 Creative Commons Attribution 4.0 International License.
3
Vijay VK6b0fa462019-05-20 16:06:11 +01004
pwielebs30355d92019-04-24 11:44:37 +02005DCAE SDK
6========
7
pwielebs30355d92019-04-24 11:44:37 +02008.. contents::
9 :depth: 3
10..
11
12Overview
Vijay VKedaf8b12019-05-23 22:02:50 +010013--------
pwielebs30355d92019-04-24 11:44:37 +020014
Eric Debeau1af30532019-05-14 17:45:22 +000015DCAE SDK contains utilities and clients which may be used for fetching
16configuration from CBS, consuming messages from DMaaP, interacting with A&AI,
17etc. SDK is written in Java.
pwielebs30355d92019-04-24 11:44:37 +020018
19Introduction
Vijay VKedaf8b12019-05-23 22:02:50 +010020------------
pwielebs30355d92019-04-24 11:44:37 +020021
22 SDK Maven dependencies (modules).
23
24 .. code-block:: XML
25
26 <properties>
Vijay VK6b0fa462019-05-20 16:06:11 +010027 <sdk.version>1.1.6</sdk.version>
pwielebs30355d92019-04-24 11:44:37 +020028 </properties>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
33 <artifactId>cbs-client</artifactId>
34 <version>${sdk.version}</version>
35 </dependency>
36
37 <dependency>
38 <groupId>org.onap.dcaegen2.services.sdk.security.crypt</groupId>
39 <artifactId>crypt-password</artifactId>
40 <version>${sdk.version}</version>
41 </dependency>
42
43 <dependency>
44 <groupId>org.onap.dcaegen2.services.sdk</groupId>
45 <artifactId>hvvesclient-producer-api</artifactId>
46 <version>${sdk.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.onap.dcaegen2.services.sdk</groupId>
51 <artifactId>hvvesclient-producer-impl</artifactId>
52 <version>${sdk.version}</version>
53 <scope>runtime</scope>
54 </dependency>
55 <!-- more to go -->
56
Eric Debeau1af30532019-05-14 17:45:22 +000057 </dependencies>