From 9c63a33643fceaaebe4fb7652f29baf2e8615c70 Mon Sep 17 00:00:00 2001 From: Zihlu Wang Date: Tue, 30 Apr 2024 10:40:09 +0800 Subject: [PATCH 1/2] build: upgrade dependencies --- gradle.properties | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gradle.properties b/gradle.properties index 408483d..2dda83d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,14 +15,13 @@ # limitations under the License. # -logbackVersion=1.4.13 -junitVersion=5.10.1 -slf4jVersion=2.0.9 -lombokVersion=1.18.30 -jacksonVersion=2.16.0 +jacksonVersion=2.17.0 javaJwtVersion=4.4.0 jjwtVersion=0.12.5 -okhttpVersion=4.12.0 +junitVersion=5.10.2 +logbackVersion=1.5.4 +lombokVersion=1.18.30 +slf4jVersion=2.0.9 springVersion=6.1.3 springBootVersion=3.2.3 From 1e1b810e42ec646f8f87aa13b99c733f4f27d5f2 Mon Sep 17 00:00:00 2001 From: Zihlu Wang Date: Mon, 3 Jun 2024 19:01:37 +0800 Subject: [PATCH 2/2] fix: fixed code hints for configurations in IDEA disppeared Closes #29 --- gradle.properties | 4 ++-- simple-jwt-spring-boot-starter/build.gradle.kts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 2dda83d..1b5bcc5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # -# Copyright (C) 2023 CodeCraftersCN. +# Copyright (C) 2024-2024 OnixByte. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ springVersion=6.1.3 springBootVersion=3.2.3 buildGroupId=com.onixbyte -buildVersion=1.4.0 +buildVersion=1.4.1 projectUrl=https://onixbyte.com/JDevKit projectGithubUrl=https://github.com/OnixByte/JDevKit licenseName=The Apache License, Version 2.0 diff --git a/simple-jwt-spring-boot-starter/build.gradle.kts b/simple-jwt-spring-boot-starter/build.gradle.kts index 938c595..b52562c 100644 --- a/simple-jwt-spring-boot-starter/build.gradle.kts +++ b/simple-jwt-spring-boot-starter/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023 CodeCraftersCN. + * Copyright (C) 2024-2024 OnixByte. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,6 +43,7 @@ dependencies { implementation("org.springframework.boot:spring-boot-autoconfigure:$springBootVersion") implementation("org.springframework.boot:spring-boot-starter-logging:$springBootVersion") implementation("org.springframework.boot:spring-boot-configuration-processor:$springBootVersion") + annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:$springBootVersion") testImplementation("org.springframework.boot:spring-boot-starter-test:$springBootVersion") }