Skip to content

Commit 70fd123

Browse files
Updated dependencies and gradle version
1 parent ab9d1e4 commit 70fd123

File tree

7 files changed

+236
-139
lines changed

7 files changed

+236
-139
lines changed

.mailmap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://git-scm.com/docs/gitmailmap
2+
Lavender Shannon <[email protected]>
3+
Lavender Shannon <[email protected]>

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Lavender Shannon
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build.gradle

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,24 @@ import java.time.Duration
22

33
buildscript {
44
ext {
5-
junit5Version = '5.7.2' // https://junit.org/junit5/
6-
junit5PlatformVersion = '1.7.2'
5+
junit5Version = '5.11.3' // https://junit.org/junit5/
6+
junit5PlatformVersion = '1.11.3'
77

8-
slf4jVersion = '1.7.30' // http://www.slf4j.org/download.html
8+
slf4jVersion = '2.0.16' // http://www.slf4j.org/download.html
9+
// TODO bump Jackson version, but also consider if we care about keeping Android compatibility for SDK versions < 26
910
// https://github.com/FasterXML/jackson/wiki/Jackson-Releases
1011
jacksonVersion = '2.13.0' // https://github.com/FasterXML/jackson-databind/releases
1112
// retrofit is why we need allow-opens. context: https://stackoverflow.com/questions/60915381/retrofit2-maven-project-illegal-reflective-access-warning // https://github.com/square/retrofit/issues/3341
12-
retrofitVersion = "2.9.0" // https://github.com/square/retrofit/releases
13-
okhttpVersion = "4.9.1" // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
14-
dockerComposePluginVersion = "0.16.12"
15-
}
16-
repositories {
17-
mavenCentral()
18-
}
19-
dependencies {
20-
classpath "com.avast.gradle:gradle-docker-compose-plugin:$dockerComposePluginVersion"
13+
retrofitVersion = "2.11.0" // https://github.com/square/retrofit/releases
14+
okhttpVersion = "4.12.0" // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
15+
dockerComposePluginVersion = "0.17.11" // https://github.com/avast/gradle-docker-compose-plugin/releases
2116
}
2217
}
2318

19+
plugins {
20+
id "com.avast.gradle.docker-compose" version "$dockerComposePluginVersion"
21+
}
22+
2423
subprojects {
2524
apply plugin: 'java-library'
2625
apply plugin: 'docker-compose'
@@ -69,6 +68,6 @@ subprojects {
6968
}
7069

7170
wrapper {
72-
gradleVersion = '6.9'
71+
gradleVersion = '8.11.1'
7372
distributionType = Wrapper.DistributionType.ALL
7473
}

gradle/wrapper/gradle-wrapper.jar

-15.6 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)