diff --git a/all/build.gradle b/all/build.gradle index c75781bab0..a84d9eeda5 100644 --- a/all/build.gradle +++ b/all/build.gradle @@ -11,9 +11,6 @@ buildscript { } } -// Make sure that no transitive dependencies are included. -configurations.compile.transitive = false - def subprojects = [ project(':grpc-auth'), project(':grpc-core'), @@ -36,21 +33,6 @@ dependencies { compile subprojects } -// Create a fat jar containing only the direct dependencies -jar { - from { - configurations.compile.collect { - it.isDirectory() ? it : zipTree(it) - } - } -} - -sourcesJar { - from { - subprojects.sourceSets.main.allSource - } -} - javadoc { classpath = files(subprojects.collect { subproject -> subproject.javadoc.classpath