blob: a55e2cd015e294d7d71fd3a00bb1cbea0d3f85e4 [file] [log] [blame]
description = "Stubby: All"
// Make sure that no transitive dependencies are included.
configurations.compile.transitive = false
dependencies {
compile project(':stubby-core'),
project(':stubby-stub'),
project(':stubby-auth'),
project(':stubby-netty'),
project(':stubby-okhttp')
}
// Create a fat jar containing only the direct dependencies
jar {
from {
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
}