Java Springboot3 Gradle

When I run:./gradlew clean proguard -info from command line, it always prompts the following error message, I don’t know how to solve it, please help me, thank you very much.

Task :classes
Skipping task ‘:classes’ as it has no actions.
Resolve mutations for :resolveMainClassName (Thread[Execution worker Thread 4,5,main]) started.
:resolveMainClassName (Thread[Execution worker Thread 4,5,main]) started.

Task :resolveMainClassName
Caching disabled for task ‘:resolveMainClassName’ because:
Build cache is disabled
Task ‘:resolveMainClassName’ is not up-to-date because:
Output property ‘outputFile’ file /Volumes/DEV/workspace/graal-demo/build/resolvedMainClassName has been removed.
Resolve mutations for :bootJar (Thread[Execution worker Thread 4,5,main]) started.
:bootJar (Thread[Execution worker Thread 4,5,main]) started.

Task :bootJar
The configuration :detachedConfiguration74 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration74 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration74 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration74 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration75 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration75 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration75 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration75 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
Excluding []
The configuration :detachedConfiguration76 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration76 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration76 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration76 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration77 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration77 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration77 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration77 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
Excluding []
The configuration :detachedConfiguration78 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration78 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration78 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration78 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration79 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration79 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
The configuration :detachedConfiguration79 is both resolvable and consumable. This is considered a legacy configuration and it will eventually only be possible to be one of these.
The configuration :detachedConfiguration79 is both consumable and declarable. This combination is incorrect, only one of these flags should be set.
Excluding []
Caching disabled for task ‘:bootJar’ because:
Build cache is disabled
Task ‘:bootJar’ is not up-to-date because:
Output property ‘archiveFile’ file /Volumes/DEV/workspace/graal-demo/build/libs/graal-demo-0.0.1.jar has been removed.
Resolve mutations for :proguard (Thread[Execution worker Thread 4,5,main]) started.
:proguard (Thread[Execution worker Thread 4,5,main]) started.

Task :proguard FAILED
Caching disabled for task ‘:proguard’ because:
Build cache is disabled
Task ‘:proguard’ is not up-to-date because:
Task has failed previously.
Loading configuration file /Volumes/DEV/workspace/graal-demo/proguard.pro
ProGuard, version 7.4.2
Printing configuration to [/Volumes/DEV/workspace/graal-demo/configuration.txt]…
Reading input…
Reading program jar [/Volumes/DEV/workspace/graal-demo/build/libs/graal-demo-0.0.1.jar] (filtered)
Warning: class [BOOT-INF/classes/org/example/graal/config/CustomConfig$Names.class] unexpectedly contains class [org.example.graal.config.CustomConfig$Names]
Warning: class [BOOT-INF/classes/org/example/graal/config/CustomConfig.class] unexpectedly contains class [org.example.graal.config.CustomConfig]
Warning: class [BOOT-INF/classes/org/example/graal/GraalDemoApplication.class] unexpectedly contains class [org.example.graal.GraalDemoApplication]
Warning: class [BOOT-INF/classes/org/example/graal/aop/LogAop.class] unexpectedly contains class [org.example.graal.aop.LogAop]
Warning: class [BOOT-INF/classes/org/example/graal/controller/HelloController.class] unexpectedly contains class [org.example.graal.controller.HelloController]
Warning: class [BOOT-INF/classes/org/example/graal/model/UserDTO.class] unexpectedly contains class [org.example.graal.model.UserDTO]
Warning: class [BOOT-INF/classes/org/example/graal/service/HelloServiceImpl.class] unexpectedly contains class [org.example.graal.service.HelloServiceImpl]
Warning: class [BOOT-INF/classes/org/example/graal/service/HelloService.class] unexpectedly contains class [org.example.graal.service.HelloService]
Warning: there were 8 classes in incorrectly named files.
You should make sure all file names correspond to their class names.
The directory hierarchies must correspond to the package hierarchies.
(ProGuard Manual: Troubleshooting | Guardsquare)
If you don’t mind the mentioned classes not being written out,
you could try your luck using the ‘-ignorewarnings’ option.