java - Where does Gradle managed dependency without Maven or Ivy? -
i understand java projects using gradle publishing reusable code publishing maven's pom.xml
file along side jar file. i'm wondering gradle store dependency list if library not published using neither ivy nor maven. moreover, gradle can used not jvm-based project, can used build non-jvm project, not use maven or ivy.
i've read chapter 23. dependency management doesn't give clue how gradle can publish java library without maven or ivy.
transitive dependencies native projects in gradle not possible of gradle 2.13.
you need implement own plugin somehow store/retrieve , process such metadata , use them correctly (resolve, download , put files correct directories).
we plan implement similar functionality. closest solution maven nar plugin.
Comments
Post a Comment