Sign in
android
/
platform
/
tools
/
adt
/
idea
/
HEAD
/
.
/
gradle-dsl
/
testData
/
parser
/
propertyDependency
/
nullVariableInAllProjectsDependencies.gradle
blob: f81a337f0ed4542cd26f1417272547d7a6280981 [
file
] [
log
] [
blame
]
def
dep
=
null
if
(
true
)
{
dep
=
"hello:kotlin:2.0"
}
allprojects
{
if
(!
plugins
.
hasPlugin
(
'java'
))
return
dependencies
{
compile dep
}
}