-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (30 loc) · 1.48 KB
/
build.gradle
File metadata and controls
37 lines (30 loc) · 1.48 KB
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
plugins {
id 'java'
}
dependencies {
implementation project(path: ':data-prepper-api')
implementation project(path: ':data-prepper-plugins:aws-plugin-api')
implementation project(path: ':data-prepper-plugins:buffer-common')
implementation project(path: ':data-prepper-plugins:http-common')
implementation project(path: ':data-prepper-plugins:common')
implementation project(path: ':data-prepper-plugins:parquet-codecs')
implementation 'io.micrometer:micrometer-core'
implementation 'software.amazon.awssdk:sts'
implementation 'software.amazon.awssdk:arns'
implementation 'software.amazon.awssdk:rds'
implementation 'software.amazon.awssdk:s3'
implementation 'software.amazon.awssdk:netty-nio-client'
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.zendesk:mysql-binlog-connector-java:0.29.2'
implementation 'com.mysql:mysql-connector-j:8.4.0'
implementation 'org.postgresql:postgresql:42.7.7'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation project(path: ':data-prepper-test:test-common')
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
testImplementation project(path: ':data-prepper-test:test-event')
testImplementation libs.avro.core
testImplementation libs.parquet.hadoop
testImplementation libs.parquet.avro
}