-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (37 loc) · 1.33 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* This build file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/3.4.1/userguide/java_library_plugin.html
*/
plugins {
id "com.commercehub.gradle.plugin.avro" version "0.9.0"
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: "com.commercehub.gradle.plugin.avro"
repositories {
mavenCentral()
maven {
url "http://packages.confluent.io/maven/"
}
}
dependencies {
compile group: 'com.typesafe.akka', name: 'akka-actor_2.12', version: '2.5.3'
compile group: 'com.typesafe.akka', name: 'akka-stream_2.12', version: '2.5.3'
compile group: 'org.apache.kafka', name: 'kafka-clients', version: '0.10.2.1'
compile group: 'org.apache.kafka', name: 'kafka-streams', version: '0.10.2.1'
compile group: "com.typesafe.akka", name: "akka-stream-kafka_2.12", version: '0.16'
compile "org.apache.avro:avro:1.8.1"
compile "io.confluent:kafka-avro-serializer:3.2.0"
compile "io.confluent:kafka-schema-registry:3.2.0"
testCompile 'junit:junit:4.12'
}
avro {
createSetters = true
fieldVisibility = "PRIVATE"
}
mainClassName = 'org.z.entities.converter.Main'