forked from luizroos/kconnect-jdbc-outbox-smt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (33 loc) · 884 Bytes
/
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
plugins {
id 'java'
id 'eclipse'
}
repositories {
mavenLocal()
mavenCentral()
maven {
url "http://packages.confluent.io/maven/"
}
}
group = 'kconnect-outbox-smt'
version = '1.0.1'
sourceCompatibility = 1.8
dependencies {
implementation group: 'org.apache.kafka', name: 'connect-api', version: '2.7.0'
implementation group: 'org.apache.kafka', name: 'connect-transforms', version: '2.7.0'
implementation group: 'io.confluent', name: 'kafka-connect-avro-converter', version: '5.2.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes "Main-Class": "kconnect-outbox-smt"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}