Skip to content
This repository was archived by the owner on Oct 20, 2019. It is now read-only.

Commit 4d4d5cb

Browse files
committed
Update dependencies
1 parent 97c5ed4 commit 4d4d5cb

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

aws/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ test {
3737
systemProperty "trellis.ns-test", "http://example.com/test/"
3838
systemProperty "trellis.s3.memento.bucket", System.getenv("AWS_TEST_BUCKET") ?: "test.trellisldp.org"
3939
systemProperty "trellis.s3.binary.bucket", System.getenv("AWS_TEST_BUCKET") ?: "test.trellisldp.org"
40-
systemProperty "trellis.sns.topic", System.getenv("AWS_TEST_TOPIC")
40+
systemProperty "trellis.sns.topic", System.getenv("AWS_TEST_TOPIC") ?: ""
4141
}
4242

build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
plugins {
22
id 'com.github.ben-manes.versions' version '0.21.0'
33
id 'com.github.hierynomus.license' version '0.15.0'
4-
id 'com.github.kt3k.coveralls' version '2.8.2'
5-
id 'com.gradle.build-scan' version '2.2.1'
4+
id 'com.github.kt3k.coveralls' version '2.8.4'
5+
id 'com.gradle.build-scan' version '2.3'
66
id 'net.researchgate.release' version '2.7.0'
77
id 'org.owasp.dependencycheck' version '4.0.2'
8-
id 'org.sonarqube' version '2.7'
8+
id 'org.sonarqube' version '2.7.1'
99
id 'biz.aQute.bnd.builder' version '4.1.0' apply false
10-
id 'com.palantir.docker' version '0.21.0' apply false
11-
id 'nebula.ospackage' version '6.1.2' apply false
10+
id 'com.palantir.docker' version '0.22.1' apply false
11+
id 'nebula.ospackage' version '6.2.0' apply false
1212
}
1313

1414
ext {
1515

1616
/* Dependencies */
1717
awsJerseyVersion = '1.3.1'
18-
awsVersion = '1.11.531'
18+
awsVersion = '1.11.560'
1919
commonsCodecVersion = '1.12'
2020
commonsCompressVersion = '1.18'
2121
commonsRdfVersion = '0.5.0'
2222
slf4jVersion = '1.7.26'
2323
guavaVersion = '27.1-jre'
24-
dropwizardVersion = '1.3.9'
25-
jenaVersion = '3.10.0'
26-
jdbiVersion = '3.6.0'
24+
dropwizardVersion = '1.3.12'
25+
jenaVersion = '3.11.0'
26+
jdbiVersion = '3.8.2'
2727
tamayaVersion = '0.3-incubating'
28-
trellisVersion = '0.8.2'
29-
trellisDbVersion = '0.2.2'
28+
trellisVersion = '0.8.3-SNAPSHOT'
29+
trellisDbVersion = '0.2.3-SNAPSHOT'
3030
snakeyamlVersion = '1.24'
3131

3232
/* Databases */
33-
mysqlVersion = '8.0.15'
33+
mysqlVersion = '8.0.16'
3434
postgresVersion = '42.2.5'
3535

3636
/* Testing */
@@ -44,11 +44,11 @@ ext {
4444
jacocoVersion = '0.8.2'
4545
jaxbVersion = '2.3.0'
4646
jerseyVersion = '2.27'
47-
junitPlatformVersion = '1.4.1'
48-
junitVersion = '5.4.1'
47+
junitPlatformVersion = '1.4.2'
48+
junitVersion = '5.4.2'
4949
liquibaseVersion = '3.6.2'
5050
logbackVersion = '1.2.3'
51-
mockitoVersion = '2.25.1'
51+
mockitoVersion = '2.27.0'
5252
otjPgVersion = '0.13.1'
5353

5454
/* OSGi */

neptune/lambda/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ test {
4242
systemProperty 'trellis.neptune.url', "http://example.com"
4343
systemProperty "trellis.s3.memento.bucket", System.getenv("AWS_TEST_BUCKET") ?: "test.trellisldp.org"
4444
systemProperty "trellis.s3.binary.bucket", System.getenv("AWS_TEST_BUCKET") ?: "test.trellisldp.org"
45+
systemProperty "trellis.sns.topic", System.getenv("AWS_TEST_TOPIC") ?: ""
4546
}
4647

rds/lambda/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jar {
4747
test {
4848
systemProperty "trellis.s3.memento.bucket", System.getenv("AWS_TEST_BUCKET") ?: "test.trellisldp.org"
4949
systemProperty "trellis.s3.binary.bucket", System.getenv("AWS_TEST_BUCKET") ?: "test.trellisldp.org"
50-
systemProperty "trellis.sns.topic", System.getenv("AWS_TEST_TOPIC")
50+
systemProperty "trellis.sns.topic", System.getenv("AWS_TEST_TOPIC") ?: ""
5151
systemProperty "trellis.jdbc.url", System.getenv("AWS_RDS_URL") ?: ""
5252
systemProperty "trellis.jdbc.username", System.getenv("AWS_RDS_USERNAME")
5353
systemProperty "trellis.jdbc.password", System.getenv("AWS_JDBC_PASSWORD")

0 commit comments

Comments
 (0)