How can I add a custom library to an Eclipse project using Gradle?

Is it possible to add a custom JAR set library using Gradle to an eclipse project? If so, how should I do this?

+3


source to share


1 answer


The validity of this answer can be found here .

eclipse.classpath {
    containers 'org.eclipse.jdt.USER_LIBRARY/my.container'
}

      



After placing this code in your assembly file, you will need to start the run order eclipseClasspath

for the changes to take effect in your project.

0


source







All Articles