forked from transferwise/tw-tkms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.libraries.gradle
50 lines (49 loc) · 3.9 KB
/
build.libraries.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
50
ext {
protobufVersion = "3.22.4"
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '2.6.15'}"
libraries = [
// version defined
awaitility : 'org.awaitility:awaitility:4.2.0',
commonsIo : 'commons-io:commons-io:2.11.0',
curatorFramework : 'org.apache.curator:curator-framework:5.5.0',
curatorRecipes : 'org.apache.curator:curator-recipes:5.5.0',
guava : 'com.google.guava:guava:31.1-jre',
jakartaValidationApi : 'jakarta.validation:jakarta.validation-api:3.0.2',
javaxValidationApi : "javax.validation:validation-api:2.0.1.Final",
kafkaStreams : 'org.apache.kafka:kafka-streams:3.4.0',
lz4Java : 'org.lz4:lz4-java:1.8.0',
protobufJava : "com.google.protobuf:protobuf-java:${protobufVersion}",
semver4j : "com.vdurmont:semver4j:3.1.0",
snappyJava : 'org.xerial.snappy:snappy-java:1.1.10.1',
spotbugsAnnotations : "com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}",
springBootDependencies : "org.springframework.boot:spring-boot-dependencies:${springBootVersion}",
twBaseUtils : 'com.transferwise.common:tw-base-utils:1.10.1',
twContext : 'com.transferwise.common:tw-context:0.12.0',
twContextStarter : 'com.transferwise.common:tw-context-starter:0.12.0',
twGracefulShutdown : 'com.transferwise.common:tw-graceful-shutdown:2.11.0',
twGracefulShutdownInterfaces : 'com.transferwise.common:tw-graceful-shutdown-interfaces:2.11.0',
twLeaderSelector : 'com.transferwise.common:tw-leader-selector:1.10.0',
twLeaderSelectorStarter : 'com.transferwise.common:tw-leader-selector-starter:1.10.0',
zstdJni : 'com.github.luben:zstd-jni:1.5.0-4',
// versions managed by spring-boot-dependencies platform
commonsLang3 : 'org.apache.commons:commons-lang3',
flywayCore : 'org.flywaydb:flyway-core',
flywayMysql : 'org.flywaydb:flyway-mysql',
jacksonDatabind : 'com.fasterxml.jackson.core:jackson-databind',
kafkaClients : 'org.apache.kafka:kafka-clients',
lombok : 'org.projectlombok:lombok',
mariadbJavaClient : 'org.mariadb.jdbc:mariadb-java-client',
micrometerCore : 'io.micrometer:micrometer-core',
micrometerRegistryPrometheus : 'io.micrometer:micrometer-registry-prometheus',
postgresql : 'org.postgresql:postgresql',
springBootConfigurationProcessor: 'org.springframework.boot:spring-boot-configuration-processor',
springBootStarter : 'org.springframework.boot:spring-boot-starter',
springBootStarterActuator : 'org.springframework.boot:spring-boot-starter-actuator',
springBootStarterJdbc : 'org.springframework.boot:spring-boot-starter-jdbc',
springBootStarterTest : 'org.springframework.boot:spring-boot-starter-test',
springBootStarterValidation : 'org.springframework.boot:spring-boot-starter-validation',
springBootStarterWeb : 'org.springframework.boot:spring-boot-starter-web',
springJdbc : 'org.springframework:spring-jdbc',
springKafka : 'org.springframework.kafka:spring-kafka',
]
}