Home
last modified time | relevance | path

Searched refs:artifactId (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/support/jetifier/jetifier/core/src/main/resources/
Ddefault.config915 …"from": { "groupId": "com.android.support", "artifactId": "animated-vector-drawable", "version": "…
916 …"to": { "groupId": "androidx.vectordrawable", "artifactId": "vectordrawable-animated", "version": …
919 …"from": { "groupId": "com.android.support", "artifactId": "appcompat-v7", "version": "{oldSlVersio…
920 … "to": { "groupId": "androidx.appcompat", "artifactId": "appcompat", "version": "{newSlVersion}" }
923 …"from": { "groupId": "com.android.support", "artifactId": "cardview-v7", "version": "{oldSlVersion…
924 … "to": { "groupId": "androidx.cardview", "artifactId": "cardview", "version": "{newSlVersion}" }
927 …"from": { "groupId": "com.android.support", "artifactId": "customtabs", "version": "{oldSlVersion}…
928 … "to": { "groupId": "androidx.browser", "artifactId": "browser", "version": "{newSlVersion}" }
931 …"from": { "groupId": "com.android.support", "artifactId": "design", "version": "{oldMaterialVersio…
932 …"to": { "groupId": "com.google.android.material", "artifactId": "material", "version": "{newMateri…
[all …]
Ddefault.generated.config869 "artifactId": "animated-vector-drawable",
874 "artifactId": "vectordrawable-animated",
881 "artifactId": "appcompat-v7",
886 "artifactId": "appcompat",
893 "artifactId": "cardview-v7",
898 "artifactId": "cardview",
905 "artifactId": "customtabs",
910 "artifactId": "browser",
917 "artifactId": "design",
922 "artifactId": "material",
[all …]
/frameworks/support/jetifier/jetifier/source-transformer/
Ddefault.config970 …"from": { "groupId": "com.android.support", "artifactId": "animated-vector-drawable", "version": "…
971 …"to": { "groupId": "androidx.vectordrawable", "artifactId": "vectordrawable-animated", "version": …
974 …"from": { "groupId": "com.android.support", "artifactId": "appcompat-v7", "version": "{oldSlVersio…
975 … "to": { "groupId": "androidx.appcompat", "artifactId": "appcompat", "version": "{newSlVersion}" }
978 …"from": { "groupId": "com.android.support", "artifactId": "cardview-v7", "version": "{oldSlVersion…
979 … "to": { "groupId": "androidx.cardview", "artifactId": "cardview", "version": "{newSlVersion}" }
982 …"from": { "groupId": "com.android.support", "artifactId": "customtabs", "version": "{oldSlVersion}…
983 … "to": { "groupId": "androidx.browser", "artifactId": "browser", "version": "{newSlVersion}" }
986 …"from": { "groupId": "com.android.support", "artifactId": "design", "version": "{oldMaterialVersio…
987 …"to": { "groupId": "com.google.android.material", "artifactId": "material", "version": "{newMateri…
[all …]
/frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/pom/
DPomDependency.kt31 val artifactId: String?, constant in com.android.tools.build.jetifier.core.pom.PomDependency
63 artifactId = artifactId ?: input.artifactId, in rewrite()
77 return "$groupId:$artifactId:$version" in toStringNotation()
84 return "$groupId:$artifactId" in toStringNotationWithoutVersion()
DPomRewriteRule.kt44 if (dep.artifactId == null || dep.artifactId.isEmpty()) { in validate()
74 input.artifactId, pomPath.toString()) in validateVersion()
104 return input.artifactId == from.artifactId && input.groupId == from.groupId in matches()
DDependencyVersions.kt84 artifactId = dep.artifactId, in applyOnConfigPomDep()
/frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
DPomRewriteRuleTest.kt127 val from = PomDependency(groupId = "g", artifactId = "a", version = ruleVersion) in testVersionsMatch()
128 val pom = PomDependency(groupId = "g", artifactId = "a", version = pomVersion) in testVersionsMatch()
136 val from = PomDependency(groupId = "g", artifactId = "a", version = ruleVersion) in testVersionsDoNotMatch()
137 val pom = PomDependency(groupId = "g", artifactId = "a", version = pomVersion) in testVersionsDoNotMatch()
DPomRewriteInZipTest.kt42 artifactId = "myOldArtifact",
46 artifactId = "myArtifact",
/frameworks/support/jetifier/jetifier/gradle-plugin/src/main/kotlin/com/android/tools/build/jetifier/plugin/gradle/
DTasksCommon.kt51 fun shouldSkipArtifact(artifactId: String, groupId: String?, config: Config): Boolean { in shouldSkipArtifact()
53 it.from.artifactId == artifactId && it.from.groupId == groupId in shouldSkipArtifact()
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
DXmlUtils.kt95 var artifactId: String? = null in createDependencyFrom() variable
106 "artifactId" -> artifactId = resolveValue(childNode.value, properties) in createDependencyFrom()
118 artifactId = artifactId, in createDependencyFrom()
DPomDocument.kt134 artifactIdNode.text = newDependency.artifactId in <lambda>()
181 for ((groupId, artifactId, version) in dependencies) { in <lambda>() method
182 Log.v(TAG, "- Dep: %s:%s:%s", groupId, artifactId, version) in <lambda>()
DPomDependencyExtensions.kt31 XmlUtils.addStringNodeToNode(node, "artifactId", artifactId) in PomDependency()
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/
DMavenUploadHelper.kt116 val artifactId: String = getArtifactIdMethod.invoke(dep) as String in <lambda>() constant
118 if (isAndroidProject(groupId, artifactId, allDeps)) { in <lambda>()
154 artifactId: String, in isAndroidProject()
158 if (dep.group == groupId && dep.name == artifactId) { in isAndroidProject()
DVersionFileWriterTask.kt59 val artifactId = project.properties["name"] as String in setUpAndroidLibrary() constant
65 String.format(VERSION_FILE_PATH, group, artifactId)) in setUpAndroidLibrary()
/frameworks/data-binding/
Dbuild.gradle175 def jarName = project.uploadArchives.repositories.mavenDeployer.pom.artifactId
260 dep.artifactId == 'baseLibrary'
262 dep.artifactId == 'gradle'
264 dep.artifactId == 'juniversalchardet'
289 def artifactId = findChildByTag(it, "artifactId").localText()[0]
291 artifactId == 'baseLibrary'
292 def isGradle = groupId == 'com.android.tools.build' && artifactId == 'gradle'
294 artifactId == 'juniversalchardet'
/frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/
DDependencyMappingTest.kt34 from = PomDependency(groupId = "hello", artifactId = "world"), in mapTest_oneToOne_shouldMap()
35 to = PomDependency(groupId = "hi", artifactId = "all", version = "2.0.0") in mapTest_oneToOne_shouldMap()
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/
DProcessor.kt135 + it.from.artifactId in <lambda>()
143 + it.to.artifactId in <lambda>()
229 artifactId = parts[1], in mapDependency()
251 .filter { !filterOutBaseLibrary || !(it.from.artifactId == "baseLibrary" in getDependenciesMap()
/frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/
DChangeDetectionTest.kt51 groupId = "supportGroup", artifactId = "supportArtifact", version = "4.0"),
53 groupId = "testGroup", artifactId = "testArtifact", version = "1.0")
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
DLocalizeDependenciesTask.groovy103 return artifact.groupId + ":" + artifact.artifactId + ":" + artifact.version;
143 String targetPath = artifact.groupId.replaceAll("\\.", "/") + "/" + artifact.artifactId +
194 def license = ExportLicensesTask.findLicenseFor(resolved.artifact.artifactId)
198 licenses.put(resolved.artifact.artifactId, license)
DExportLicensesTask.groovy154 public static Object findLicenseFor(String artifactId) {
155 return licenseLookup.get(artifactId)
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/
Dbuild.gradle38 pom.artifactId = 'localizemaven'
/frameworks/data-binding/integration-tests/IndependentLibrary/app/
Dbuild.gradle53 pom.artifactId = 'independent-library'
/frameworks/data-binding/baseLibrary/
Dbuild.gradle42 pom.artifactId = 'baseLibrary'
/frameworks/data-binding/compiler/
Dbuild.gradle49 pom.artifactId = 'compiler'
/frameworks/support/jetifier/jetifier/standalone/src/main/kotlin/com/android/tools/build/jetifier/standalone/
DTopOfTreeBuilder.kt85 val artifactDir = Paths.get(DIR_PREFIX, groupAsPath, pomDep.artifactId, pomDep.version!!) in <lambda>()

12