You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the directions and the build will fail because the sample project tried to access the plugin before it is place.
I fixed the issue by first commenting out the line 'include 'sample'" in the gradle.settings the first time that ./gradlew :plugin:publishToMavenLocal is run
EDIT: I thought that I fixed but it has now failed with a new error, I'll list it here even though it might be a different issue:
Caused by java.lang.IllegalArgumentException: URI is not hierarchical```
The text was updated successfully, but these errors were encountered:
Following the directions and the build will fail because the sample project tried to access the plugin before it is place.
That actually makes sense! Should look for a workaround for that, maybe by using the buildSrc. But as you said, removing include 'sample' for the first time and running ./gradlew :plugin:publishToMavenLocal successfully, you should be able to re-include 'sample' after that and building the project should work just fine.
EDIT: I thought that I fixed but it has now failed with a new error, I'll list it here even though it might be a different issue: Caused by java.lang.IllegalArgumentException: URI is not hierarchical
Try running ./gradlew --stacktrace --console=plain :plugin:publishToMavenLocal and post the complete output here.
Following the directions and the build will fail because the sample project tried to access the plugin before it is place.
I fixed the issue by first commenting out the line 'include 'sample'" in the gradle.settings the first time that ./gradlew :plugin:publishToMavenLocal is run
EDIT: I thought that I fixed but it has now failed with a new error, I'll list it here even though it might be a different issue:
The text was updated successfully, but these errors were encountered: