-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.libraries.gradle
72 lines (71 loc) · 5.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
ext {
libraries = [
// version defined
awaitility : 'org.awaitility:awaitility:4.2.2',
twGafferJtaStarter : 'com.transferwise.common:tw-gaffer-jta-starter:2.2.0',
twGafferJtaJakartaStarter : 'com.transferwise.common:tw-gaffer-jta-jakarta-starter:3.0.0',
apacheCuratorRecipies : "org.apache.curator:curator-recipes:5.7.1",
apacheCommonsCollections : "org.apache.commons:commons-collections4:4.4",
commonsIo : "commons-io:commons-io:2.15.1",
guava : "com.google.guava:guava:33.3.1-jre",
jakartaValidationApi : 'jakarta.validation:jakarta.validation-api:3.0.2',
javaxValidationApi : "javax.validation:validation-api:2.0.1.Final",
semver4j : "com.vdurmont:semver4j:3.1.0",
spotbugsAnnotations : "com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}",
springBootDependencies : "org.springframework.boot:spring-boot-dependencies:$springBootVersion",
twGracefulShutdown : "com.transferwise.common:tw-graceful-shutdown:2.14.3",
twGracefulShutdownIntefaces : "com.transferwise.common:tw-graceful-shutdown-interfaces:2.14.3",
twContext : "com.transferwise.common:tw-context:1.0.1",
twContextStarter : "com.transferwise.common:tw-context-starter:1.0.1",
twIncidents : 'com.transferwise.common:tw-incidents:1.2.2',
twLeaderSelector : "com.transferwise.common:tw-leader-selector:1.10.2",
twLeaderSelectorStarter : "com.transferwise.common:tw-leader-selector-starter:1.10.2",
twBaseUtils : "com.transferwise.common:tw-base-utils:1.13.0",
twEntryPointsStarter : 'com.transferwise.common:tw-entrypoints-starter:2.16.0',
twSpyqlStarter : 'com.transferwise.common:tw-spyql-starter:1.6.2',
lubenZstd : 'com.github.luben:zstd-jni:1.5.6-7',
lz4Java : 'org.lz4:lz4-java:1.8.0',
// versions managed by spring-boot-dependencies platform
flywayCore : "org.flywaydb:flyway-core",
springKafka : "org.springframework.kafka:spring-kafka",
springTx : "org.springframework:spring-tx",
springJdbc : "org.springframework:spring-jdbc",
springBeans : "org.springframework:spring-beans",
springCore : "org.springframework:spring-core",
springContext : "org.springframework:spring-context",
springBootConfigurationProcessor: 'org.springframework.boot:spring-boot-configuration-processor',
springWeb : "org.springframework:spring-web",
springSecurityWeb : "org.springframework.security:spring-security-web",
springBoot : "org.springframework.boot:spring-boot",
springBootStarterActuator : "org.springframework.boot:spring-boot-starter-actuator",
springBootStarterValidation : 'org.springframework.boot:spring-boot-starter-validation',
springBootStarter : "org.springframework.boot:spring-boot-starter",
springBootAutoconfigure : "org.springframework.boot:spring-boot-autoconfigure",
springBootStarterTest : 'org.springframework.boot:spring-boot-starter-test',
springBootStarterJdbc : 'org.springframework.boot:spring-boot-starter-jdbc',
springBootStarterWeb : 'org.springframework.boot:spring-boot-starter-web',
springSecurityConfig : 'org.springframework.security:spring-security-config',
springSecurityTest : 'org.springframework.security:spring-security-test',
apacheCommonsLang : "org.apache.commons:commons-lang3",
micrometerCore : "io.micrometer:micrometer-core",
micrometerRegistryPrometheus : "io.micrometer:micrometer-registry-prometheus",
jacksonAnnotations : "com.fasterxml.jackson.core:jackson-annotations",
jacksonDatabind : "com.fasterxml.jackson.core:jackson-databind",
kafkaClients : "org.apache.kafka:kafka-clients",
lombok : "org.projectlombok:lombok",
slf4j : "org.slf4j:slf4j-api",
junitApi : 'org.junit.jupiter:junit-jupiter-api',
junitEngine : 'org.junit.jupiter:junit-jupiter-engine',
junitParams : 'org.junit.jupiter:junit-jupiter-params',
junitMockito : 'org.mockito:mockito-junit-jupiter',
assertJCore : 'org.assertj:assertj-core',
mariadbJavaClient : 'org.mariadb.jdbc:mariadb-java-client',
liquibaseCore : 'org.liquibase:liquibase-core',
tomcatJdbc : 'org.apache.tomcat:tomcat-jdbc',
janino : 'org.codehaus.janino:janino',
postgresql : 'org.postgresql:postgresql',
mysqlConnectorJava : 'mysql:mysql-connector-java',
mysqlConnectorJ : 'com.mysql:mysql-connector-j',
logbackClassic : "ch.qos.logback:logback-classic",
]
}