Skip to content

Commit

Permalink
Updated gradle, closes #111, closes #141
Browse files Browse the repository at this point in the history
  • Loading branch information
retrodaredevil committed Jun 28, 2023
1 parent f413305 commit 5d088c8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
jacksonVersion = '2.15.2' // https://github.com/FasterXML/jackson-databind/tags
// 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/tags
shadowVersion = '7.1.2' // https://github.com/johnrengelman/shadow/releases // only works on gradle 7
shadowVersion = '8.1.1' // https://github.com/johnrengelman/shadow/releases
ioLibVersion = '2.3.0' // https://github.com/retrodaredevil/io-lib/releases
okhttpVersion = "4.11.0" // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
// couchdbJavaVersion = '1.1.0'
Expand Down Expand Up @@ -298,6 +298,6 @@ project(":action-lang"){
}

wrapper {
gradleVersion = '7.4.2'
gradleVersion = '8.1.1'
distributionType = Wrapper.DistributionType.ALL
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
ext {
// https://github.com/spring-projects/spring-boot/wiki#release-notes
// https://github.com/spring-projects/spring-boot/releases
springBootVersion = '2.6.6'
springBootVersion = '3.1.1'
}
repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;
import java.nio.file.Path;
import java.util.Objects;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;

@Component
public class CacheHandlerProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
Expand Down

0 comments on commit 5d088c8

Please sign in to comment.