configurations { python { canBeResolved = true canBeConsumed = false } } dependencies { python project(path: ':protobuf', configuration: 'python') } task copyPythonCode(type: Copy, dependsOn: configurations.python){ // Copy python protobuf code from proto project. from zipTree(configurations.python.asPath) into '.' }