Lines Matching refs:def
65 def buildExtensionsTask = project.tasks.create "buildExtensionsTask", Exec
74 def prepareExtensionPrebuilds = project.tasks.create "prepareExtensionPrebuilds", Exec
85 def testTask = project.tasks.create "runTestsOf${it.getName().capitalize()}", Exec
147 def propsFile = new File("${dataBindingConfig.eapOutDir}/databinding.properties")
161 def findChildByTag(node, tag) {
167 def fullJar(project) {
168 def localizeTask = project.parent.tasks.findByName('localizeDependencies')
175 def jarName = project.uploadArchives.repositories.mavenDeployer.pom.artifactId
176 def workingDir = "${project.buildDir}/intermediates/fullJar"
177 def fatJar = "${workingDir}/${jarName}-fat.jar"
178 def proguardJar = "${workingDir}/${jarName}-proguard.jar"
179 def jarJar = project.jar.archivePath
180 def runProguard = dataBindingConfig.runProguard
191 def deps = new HashSet<ResolvedDependency>()
226 def inputLibrary = runProguard ? proguardJar : fatJar
227 def outputLibrary = jarJar
232 def jarJarLibrary = new File(dataBindingConfig.externalPrebuiltsBase,
253 def setupUpload = { uploadTask ->
259 def isBaseLibrary = dep.groupId == 'com.android.databinding' &&
261 def isGradle = dep.groupId == 'com.android.tools.build' &&
263 def isChardet = dep.groupId == 'com.googlecode.juniversalchardet' &&
283 def deps = findChildByTag(asNode(), "dependencies")
287 def unwanted = deps.children().findAll {
288 def groupId = findChildByTag(it, "groupId").localText()[0]
289 def artifactId = findChildByTag(it, "artifactId").localText()[0]
290 def isBaseLibrary = groupId == 'com.android.databinding' &&
292 def isGradle = groupId == 'com.android.tools.build' && artifactId == 'gradle'
293 def isChardet = groupId == 'com.googlecode.juniversalchardet' &&