ant - How to add a Netbeans project as a dependency to a Gradle project? -
i new gradle , of existing projects in ant (netbeans projects).
do have create gradle project each of projects want reuse?
can straightaway declare existing netbeans projects dependencies in gradle project? if yes, how?
thanks.
the simplest approach add dependency on files produced ant build (they in build/dist
). similar gradle dependencies file directories
better solution start using repository manager: ivy, artifactory, nexus. update netbeans projects publish built artifacts repository , gradle projects can refer them. check more details in http://gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
Comments
Post a Comment