blob: d44dda59c1beb8ed84ae5b89623cd50a5636918a [file] [log] [blame]
pwielebs30355d92019-04-24 11:44:37 +02001========
2DCAE SDK
3========
4
5:Date: 2019-04-29
6
7.. contents::
8 :depth: 3
9..
10
11Overview
12========
13
14DCAE SDK contains utilities and clients which may be used for fetching configuration from CBS, consuming messages from DMaaP, interacting with A&AI, etc. SDK is written in Java.
15
16Introduction
17============
18
19 SDK Maven dependencies (modules).
20
21 .. code-block:: XML
22
23 <properties>
24 <sdk.version>1.1.4</sdk.version>
25 </properties>
26
27 <dependencies>
28 <dependency>
29 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
30 <artifactId>cbs-client</artifactId>
31 <version>${sdk.version}</version>
32 </dependency>
33
34 <dependency>
35 <groupId>org.onap.dcaegen2.services.sdk.security.crypt</groupId>
36 <artifactId>crypt-password</artifactId>
37 <version>${sdk.version}</version>
38 </dependency>
39
40 <dependency>
41 <groupId>org.onap.dcaegen2.services.sdk</groupId>
42 <artifactId>hvvesclient-producer-api</artifactId>
43 <version>${sdk.version}</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.onap.dcaegen2.services.sdk</groupId>
48 <artifactId>hvvesclient-producer-impl</artifactId>
49 <version>${sdk.version}</version>
50 <scope>runtime</scope>
51 </dependency>
52 <!-- more to go -->
53
54 </dependencies>