Skip to content

Tag: gradle

Plugin with id ‘maven’ not found

Plugin with id ‘maven’ not found. I got this error in IDEA that uses with 7.1, that is strange as maven is built-in plugin, and should be distributed with gradle. When running Gradle 6.3, it seems there is no such error. Answer In Gradle 7.x, The maven plugin has been removed. You should use the m…

How to call class from another module in SpringBoot, Java

I have a Spring Boot multi-module gradle project, and I am trying to call class from another module. I have a HttpDataClient.java class that I would like to call in DataResolver.java class in another module. HttpDataClient.java So, this class should return some response data from Data service. After I would l…