You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-11Lines changed: 19 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,7 @@
2
2
3
3
## What is it?
4
4
5
-
This library intends to be....todo
6
-
7
-
**Note** It currently is not fully featured/fully implemented. If there is a feature/end point that you
8
-
need that is not yet implemented, please read the **[How to Contribute](#how-to-contribute)** section, or **[Create an issue](#)**
9
-
requesting it.
5
+
This library intends to give you an easy way to interact with the [Kafka-Connect](https://docs.confluent.io/current/connect/restapi.html) REST service (V4).
10
6
11
7
**Note** Use this library at your own risk! Currently there are no known issues, but as an **unofficial** library,
12
8
there are no guarantees.
@@ -19,19 +15,31 @@ This client library is released on Maven Central. Add a new dependency to your
19
15
<dependency>
20
16
<groupId>org.sourcelab</groupId>
21
17
<artifactId>kafka-connect-client</artifactId>
22
-
<version>0.1.0</version>
18
+
<version>1.0.0</version>
23
19
</dependency>
24
20
```
25
21
26
22
Example Code:
27
23
```java
28
-
// TODO
24
+
/*
25
+
* Create a new configuration object.
26
+
*
27
+
* This configuration also allows you to define some optional details on your connection,
28
+
* such as using an outbound proxy (authenticated or not).
0 commit comments