mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
Fix typo of word "dependencies" in gradle build files (#259)
* Fix typo of word "dependencies" in gradle build files
This commit is contained in:
parent
4e4b06a2dc
commit
725df06d2b
2 changed files with 2 additions and 2 deletions
|
@ -320,7 +320,7 @@ def createGetBuildSrcDirectDepsTask(outputFileName) {
|
||||||
"getBuildSrcDeps_${java.util.UUID.randomUUID()}".toString(),
|
"getBuildSrcDeps_${java.util.UUID.randomUUID()}".toString(),
|
||||||
Exec) {
|
Exec) {
|
||||||
workingDir "${rootDir}/buildSrc"
|
workingDir "${rootDir}/buildSrc"
|
||||||
commandLine '../gradlew', 'exportDenpendencies',
|
commandLine '../gradlew', 'exportDependencies',
|
||||||
"-PdependencyExportFile=${outputFileName}"
|
"-PdependencyExportFile=${outputFileName}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,7 @@ gradle.projectsEvaluated {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task exportDenpendencies {
|
task exportDependencies {
|
||||||
def outputFileProperty = 'dependencyExportFile'
|
def outputFileProperty = 'dependencyExportFile'
|
||||||
def output = project.hasProperty(outputFileProperty)
|
def output = project.hasProperty(outputFileProperty)
|
||||||
? new PrintStream(
|
? new PrintStream(
|
||||||
|
|
Loading…
Add table
Reference in a new issue