Gradle compile dependencies not included in Jar
问题 I have a jar, build-plugins.jar with a gradle plugin that is build with this in build.gradle: apply plugin 'java' dependencies { compile gradleApi() compile localGroovy() compile('eviware:maven-soapui-plugin:4.5.1') compile('org.antlr:stringtemplate:4.0.2') compile('commons-io:commons-io:2.4') compile('joda-time:joda-time:2.1') } This builds build-plugins.jar. And the project that consumes the plugin references the plugin jar by file apply plugin 'thepluginwahoo' buildscript { dependencies {