However this type of dependency on the other project’s configuration zipAssets doesn’t appear to locate the prjAAssets.zip. Is there a way to make projectB aware of the artifact from projectA, without pushing prjAAssets.zip to an external repository?
So, you’re right it was working all along. I thought that the zip artifact would be on the classpath somewhere. But that isn’t the case. In my java code at runtime I need to be able to find the location of this file and obviously don’t want to hard code it in to the application.
How does Gradle make these artifacts available to the app at runtime?
And is it possible for a project, to add a configuration to another, as a dependency. Is there a notation to say “self” for the path ? Using the project’s name itself doesn’t work.