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
When attempting to run composer tasks, we are getting the following errors:
Could not determine the dependencies of task ':basemodule:testDeltaDebugComposer'.
Could not resolve all task dependencies for configuration ':basemodule:composer'.
Could not resolve com.trevjonez.composer:composer:1.0.0-rc08.
Required by:
project :basemodule
> Could not resolve com.trevjonez.composer:composer:1.0.0-rc08.
> //repo1.here.com/com/trevjonez/composer/composer/1.0.0-rc08/composer-1.0.0-rc08.pom'.
> continue for each repo in dependency block
When we first started seeing this, simply added maven{ url "https://jcenter.bintray.com/"} to our project's dependencies block and we were now good with composer:1.0.0-rc8, commander-os:1.0.0-rc8 and commander-android:1.0.0-rc8. It now seems that they are gone. I also know that #84 is open to try and avoid this.
Knowing that, I cloned the repository locally and adjusted from the branch we currently use - rc08 with the attached patch. This was needed as there's other dependencies that are no longer available for various reasons. All compiled and worked and I was able to publishMainJarPublicationToMavenLocal successfully for each dependency.
The problem now is that I run into this error when trying to run check as well as use the plug in with my project when I point to the local dependencies for composer and commander(os/android).
Task :testDebugComposer FAILED
Exception in thread "main" java.lang.NoClassDefFoundError: com/gojuno/commander/android/AdbKt
at com.gojuno.composer.ApkKt.parseTestPackage(Apk.kt:21)
at com.gojuno.composer.MainKt.main(Main.kt:45)
Caused by: java.lang.ClassNotFoundException: com.gojuno.commander.android.AdbKt
at java.net.URLClassLoader.findClass(URLClassLoader.java:387)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
... 2 more
If preferred, I can push the branch up that I used rather than replying on the generated patch.
The text was updated successfully, but these errors were encountered:
When attempting to run composer tasks, we are getting the following errors:
When we first started seeing this, simply added
maven{ url "https://jcenter.bintray.com/"}
to our project's dependencies block and we were now good withcomposer:1.0.0-rc8
,commander-os:1.0.0-rc8
andcommander-android:1.0.0-rc8
. It now seems that they are gone. I also know that #84 is open to try and avoid this.Knowing that, I cloned the repository locally and adjusted from the branch we currently use - rc08 with the
attached patch. This was needed as there's other dependencies that are no longer available for various reasons. All compiled and worked and I was able to
publishMainJarPublicationToMavenLocal
successfully for each dependency.The problem now is that I run into this error when trying to run
check
as well as use the plug in with my project when I point to the local dependencies for composer and commander(os/android).If preferred, I can push the branch up that I used rather than replying on the generated patch.
The text was updated successfully, but these errors were encountered: