-
-
Notifications
You must be signed in to change notification settings - Fork 297
Gradle import of 4.1.1 release cannot be found #582
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
Comments
I think I have the same issue using the 4.1.1 core image via Gradle, i.e.
while 4.0.4 seems to work without issues. |
Completely forgot about this one. I just made a 4.2.0 release on JCentral, @adamreichold could you confirm if it sill affected by the same problem? Thank you! |
Yes, it is still affected with the same error message.
I wonder whether the dependency on the Android runtime is not indeed just missing a <dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<scope>runtime</scope>
</dependency> instead of <dependency>
<artifactId>android</artifactId>
<scope>runtime</scope>
</dependency> c.f. https://github.com/simpligility/android-maven-plugin/blob/master/src/test/projects/helloflashlight/pom.xml (I also wonder whether the scope should be |
Ok, thanks for confirming. This might also be a good opportunity to update the generation of the maven artifacts using the maven-publishing plugin (#623), so the process is completely automated. |
Solved by including the processing-android dep from the self-hosted repo: #623 |
If a Gradle project includes processing-core:4.1.1 as dependency, the build fails with
even though the packages are available on JCenter.
The text was updated successfully, but these errors were encountered: