File tree 2 files changed +71
-1
lines changed
2 files changed +71
-1
lines changed Original file line number Diff line number Diff line change 1
- # kafka-examples
1
+ # Apache Kafka Examples
2
+
3
+ This repository contains a set of examples to be used with Apache Kafka and other open source components.
4
+
5
+ * [ Camel Kafka Connector] ( camel-kafka-connectors ) : A simple example of how to use the Apache Camel subproject plugins with Kafka Connect.
6
+
7
+ ## System Requirements
8
+
9
+ These applications are designed to be run with Apache Kafka 2.x versions. To compile and run these projects you will also need:
10
+
11
+ * JDK 8 ro 11+
12
+ * Maven 3
13
+ * GraalVM Community
14
+ * Docker Engine
15
+ * Docker Compose
Original file line number Diff line number Diff line change
1
+ # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
+
3
+ # Created by https://www.toptal.com/developers/gitignore/api/vscode,macos,visualstudiocode
4
+ # Edit at https://www.toptal.com/developers/gitignore?templates=vscode,macos,visualstudiocode
5
+
6
+ # ## macOS ###
7
+ # General
8
+ .DS_Store
9
+ .AppleDouble
10
+ .LSOverride
11
+
12
+ # Icon must end with two \r
13
+ Icon
14
+
15
+
16
+ # Thumbnails
17
+ ._ *
18
+
19
+ # Files that might appear in the root of a volume
20
+ .DocumentRevisions-V100
21
+ .fseventsd
22
+ .Spotlight-V100
23
+ .TemporaryItems
24
+ .Trashes
25
+ .VolumeIcon.icns
26
+ .com.apple.timemachine.donotpresent
27
+
28
+ # Directories potentially created on remote AFP share
29
+ .AppleDB
30
+ .AppleDesktop
31
+ Network Trash Folder
32
+ Temporary Items
33
+ .apdisk
34
+
35
+ # ## VisualStudioCode ###
36
+ .vscode /*
37
+ ! .vscode /tasks.json
38
+ ! .vscode /launch.json
39
+ * .code-workspace
40
+
41
+ # ## VisualStudioCode Patch ###
42
+ # Ignore all local history of files
43
+ .history
44
+ .ionide
45
+
46
+ # ## vscode ###
47
+ ! .vscode /settings.json
48
+ ! .vscode /extensions.json
49
+
50
+ # End of https://www.toptal.com/developers/gitignore/api/vscode,macos,visualstudiocode
51
+
52
+ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
53
+
54
+ plugins /*
55
+ ! plugins /README.md
56
+ * .gz
You can’t perform that action at this time.
0 commit comments