Skip to content

Commit

Permalink
Updated dependencies and gradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
retrodaredevil committed Dec 10, 2024
1 parent ab9d1e4 commit 70fd123
Show file tree
Hide file tree
Showing 7 changed files with 236 additions and 139 deletions.
3 changes: 3 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://git-scm.com/docs/gitmailmap
Lavender Shannon <[email protected]>
Lavender Shannon <[email protected]>
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Lavender Shannon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
25 changes: 12 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,24 @@ import java.time.Duration

buildscript {
ext {
junit5Version = '5.7.2' // https://junit.org/junit5/
junit5PlatformVersion = '1.7.2'
junit5Version = '5.11.3' // https://junit.org/junit5/
junit5PlatformVersion = '1.11.3'

slf4jVersion = '1.7.30' // http://www.slf4j.org/download.html
slf4jVersion = '2.0.16' // http://www.slf4j.org/download.html
// TODO bump Jackson version, but also consider if we care about keeping Android compatibility for SDK versions < 26
// https://github.com/FasterXML/jackson/wiki/Jackson-Releases
jacksonVersion = '2.13.0' // https://github.com/FasterXML/jackson-databind/releases
// 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
retrofitVersion = "2.9.0" // https://github.com/square/retrofit/releases
okhttpVersion = "4.9.1" // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
dockerComposePluginVersion = "0.16.12"
}
repositories {
mavenCentral()
}
dependencies {
classpath "com.avast.gradle:gradle-docker-compose-plugin:$dockerComposePluginVersion"
retrofitVersion = "2.11.0" // https://github.com/square/retrofit/releases
okhttpVersion = "4.12.0" // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
dockerComposePluginVersion = "0.17.11" // https://github.com/avast/gradle-docker-compose-plugin/releases
}
}

plugins {
id "com.avast.gradle.docker-compose" version "$dockerComposePluginVersion"
}

subprojects {
apply plugin: 'java-library'
apply plugin: 'docker-compose'
Expand Down Expand Up @@ -69,6 +68,6 @@ subprojects {
}

wrapper {
gradleVersion = '6.9'
gradleVersion = '8.11.1'
distributionType = Wrapper.DistributionType.ALL
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 70fd123

Please sign in to comment.