-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build error with Gradle v7 - Plugin with id 'maven' not found. #471
Comments
@novseje Still facing same error after changing plugin: 'maven-publish' & Gradle v7 |
Changing the plugin to 'maven-publish' solves the issue but now I've a new error:
|
Still facing this problem. Anyone with a solution?? |
A problem occurred configuring project ':react-native-tesseract-ocr'.
Same here , any solution for this problem? |
i just commented out and was able to run successfully
|
@navaneeth-algorithm it was already commented out here but though the same issue occured any idea to solve the issue
|
Commenting it out solved my case |
My project build successfully but cannot perform the read function. The following is console error:
|
sovle my problem ,thx !!! |
or you can replace mavenDeployer to
|
should be inside |
what`s the equivalent to this all projects in Gradle 7 allprojects { |
i just commented out and was able to run successfully
|
@alidavodii Here’s a refined version: I commented out the code and was able to run it successfully, but as you know, these changes are in the |
When I build project with Gradle v7 I got error:
For those using gradle 7, maven plugin has been removed, now you should use maven-publish, as described in official site at this link: https://docs.gradle.org/7.0/userguide/upgrading_version_6.html?_ga=2.21245883.1883799052.1624281891-1948725710.1624281891#removal_of_the_legacy_maven_plugin
So, instead of using:
apply plugin: 'maven'
you should use
apply plugin: 'maven-publish'
The text was updated successfully, but these errors were encountered: