fix: fixed code hints for configurations in IDEA disppeared

Closes #29
This commit is contained in:
Zihlu Wang
2024-06-03 19:01:37 +08:00
parent 9c63a33643
commit 1e1b810e42
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# #
# Copyright (C) 2023 CodeCraftersCN. # Copyright (C) 2024-2024 OnixByte.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with 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 springBootVersion=3.2.3
buildGroupId=com.onixbyte buildGroupId=com.onixbyte
buildVersion=1.4.0 buildVersion=1.4.1
projectUrl=https://onixbyte.com/JDevKit projectUrl=https://onixbyte.com/JDevKit
projectGithubUrl=https://github.com/OnixByte/JDevKit projectGithubUrl=https://github.com/OnixByte/JDevKit
licenseName=The Apache License, Version 2.0 licenseName=The Apache License, Version 2.0
@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2023 CodeCraftersCN. * Copyright (C) 2024-2024 OnixByte.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with 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-autoconfigure:$springBootVersion")
implementation("org.springframework.boot:spring-boot-starter-logging:$springBootVersion") implementation("org.springframework.boot:spring-boot-starter-logging:$springBootVersion")
implementation("org.springframework.boot:spring-boot-configuration-processor:$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") testImplementation("org.springframework.boot:spring-boot-starter-test:$springBootVersion")
} }