This repository was archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexternal-dependencies.gradle
More file actions
78 lines (60 loc) · 3.36 KB
/
external-dependencies.gradle
File metadata and controls
78 lines (60 loc) · 3.36 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
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
73
74
75
76
77
78
ext {
dropwizard_version = '1.3.11'
dropwizard_metrics_version = '4.1.0'
jersey_version = '2.25.1'
jackson_version = '2.9.9'
jetty_version = '9.4.18.v20190429'
jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
verifiableLog = 'verifiable-log:verifiable-log:0.2.77'
objectHash = 'objecthash-java:objecthash-java:0.1.63'
dropwizard = [
"io.dropwizard:dropwizard-core:${dropwizard_version}",
"io.dropwizard:dropwizard-assets:${dropwizard_version}",
"io.dropwizard:dropwizard-auth:${dropwizard_version}",
"io.dropwizard:dropwizard-client:${dropwizard_version}",
"io.dropwizard:dropwizard-configuration:${dropwizard_version}",
"io.dropwizard:dropwizard-jdbi:${dropwizard_version}",
"io.dropwizard:dropwizard-logging:${dropwizard_version}",
"io.dropwizard:dropwizard-views:${dropwizard_version}",
"io.dropwizard.metrics:metrics-core:${dropwizard_metrics_version}",
"io.dropwizard.modules:dropwizard-flyway:1.0.0-1",
"io.dropwizard.modules:dropwizard-java8-jdbi:0.9.0-1"
]
stringTemplate = 'org.antlr:stringtemplate:3.2.1'
postgresClient = 'org.postgresql:postgresql:42.1.4'
apacheCommonsCodec = 'commons-codec:commons-codec:1.12'
apacheCommonsCollections = 'org.apache.commons:commons-collections4:4.3'
apacheCommonsLang3 = 'org.apache.commons:commons-lang3:3.9'
// force AWS's dependency on dataformat-cbor to match our jackson_version
awsS3 = ['com.amazonaws:aws-java-sdk-s3:1.11.77', "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson_version}"]
javaxActivation = 'javax.activation:activation:1.1.1'
jaxb = ['javax.xml.bind:jaxb-api:2.3.0',
'com.sun.xml.bind:jaxb-core:2.3.0.1',
'com.sun.xml.bind:jaxb-impl:2.3.2']
jdbi = 'org.jdbi:jdbi:2.78'
jersey_client = "org.glassfish.jersey.core:jersey-client:${jersey_version}"
jacksonCsv = "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:${jackson_version}"
jerseyMedia = "org.glassfish.jersey.media:jersey-media-multipart:${jersey_version}"
markdown = 'org.markdownj:markdownj-core:0.4'
thymeleaf = 'org.thymeleaf:thymeleaf:3.0.11.RELEASE'
dropwizardLogstash = "uk.gov.ida:dropwizard-logstash:1.1.2-build_46"
jetty = [
"org.eclipse.jetty:jetty-continuation:${jetty_version}",
"org.eclipse.jetty:jetty-http:${jetty_version}",
"org.eclipse.jetty:jetty-io:${jetty_version}",
"org.eclipse.jetty:jetty-security:${jetty_version}",
"org.eclipse.jetty:jetty-server:${jetty_version}",
"org.eclipse.jetty:jetty-servlet:${jetty_version}",
"org.eclipse.jetty:jetty-servlets:${jetty_version}",
"org.eclipse.jetty:jetty-util:${jetty_version}",
"org.eclipse.jetty:jetty-webapp:${jetty_version}",
"org.eclipse.jetty:jetty-xml:${jetty_version}"
]
// test dependencies
dropwizardTest = "io.dropwizard:dropwizard-testing:${dropwizard_version}"
junit = ['org.hamcrest:hamcrest:2.1', 'org.hamcrest:hamcrest-library:2.1', 'junit:junit:4.12']
jsoup = 'org.jsoup:jsoup:1.11.3'
jsonAssert = 'org.skyscreamer:jsonassert:1.5.0'
mockito = 'org.mockito:mockito-core:2.27.0'
wiremock = 'com.github.tomakehurst:wiremock:2.23.2'
}