Add 'car/' from commit 'eee0e8dc445691e600680f4abc77f2814b20b054'
git-subtree-dir: car git-subtree-mainline:1d29a5526cgit-subtree-split:eee0e8dc44
This commit is contained in:
16
car/build.gradle
Normal file
16
car/build.gradle
Normal file
@@ -0,0 +1,16 @@
|
||||
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 '.'
|
||||
}
|
||||
Reference in New Issue
Block a user