I used this library for mapping in Kotlin and SpringBoot, Thanks.
I saw the error message below when running the build in the project.
Issue
Got error like below
BUILD SUCCESSFUL in 83ms
1 actionable task: 1 up-to-date
Errors occurred while building effective model from /Users/user/.gradle/caches/modules-2/files-2.1/io.mcarle/konvert-processor/2.3.0/c87d25b0cc2ad1b119ddd09996f7b71361f8a1e5/konvert-processor-2.3.0.pom:
'dependencies.dependency[io.mcarle:konvert-processor:2.3.0]' for io.mcarle:konvert-processor:2.3.0 is referencing itself. in io.mcarle:konvert-processor:2.3.0
3:57:45 PM: Execution finished 'kspKotlin'.
In addition, various tests have found that the error message appears when using the io.spring.dependency-management plug-in.
If you look at the pom file generated by publishToMavenLocal, you can see that the konvert-processor has been added. and when the plug-in in io.spring.dependency-management works, it seems to send an error message that io.mcarle:konvert-processor:2.3.0 is referencing itself. in io.mcarle:konvert-processor:2.3.0.
And this is the dependence, as i see in module.json, added by java-test-fixes plugin. It seems to be related to the issue.
I used this library for mapping in Kotlin and SpringBoot, Thanks. I saw the error message below when running the build in the project.
Issue
In addition, various tests have found that the error message appears when using the
io.spring.dependency-management
plug-in.Below, is my build.gradle.kts
publishToMavenLocal
, you can see that thekonvert-processor
has been added. and when the plug-in inio.spring.dependency-management
works, it seems to send an error message thatio.mcarle:konvert-processor:2.3.0 is referencing itself. in io.mcarle:konvert-processor:2.3.0
.module.json
, added byjava-test-fixes
plugin. It seems to be related to the issue.konvert-processor-2.3.0.pom
module.json
If i added below scripts in
build.gradle.kts
in processor module, it seems works fine