Skip to content

Commit 24373ca

Browse files
committed
Migrated wordPressLogin to Version catalog
1 parent 43f50ae commit 24373ca

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

WordPress/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,9 @@ dependencies {
380380
strictly libs.versions.wordPressUtils.get()
381381
}
382382
}
383-
implementation ("$gradle.ext.loginFlowBinaryPath:$wordPressLoginVersion") {
383+
// TODO: Migrate from composite build path modules to version catalogs (libs.version.toml).
384+
// noinspection UseTomlInstead
385+
implementation ("$gradle.ext.loginFlowBinaryPath:${libs.versions.wordPressLogin.get()}") {
384386
exclude group: 'com.github.bumptech.glide'
385387
exclude group: 'org.wordpress', module: 'utils'
386388
}

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ ext {
2929
gutenbergMobileVersion = 'v1.121.0-alpha1'
3030
wordPressAztecVersion = 'v2.1.3'
3131
wordPressFluxCVersion = 'trunk-c670e916346bdaa2379936dd8dbb6750766ca319'
32-
wordPressLoginVersion = '1.16.0'
32+
// wordPressLoginVersion = '1.16.0'
3333
}
3434

3535
measureBuilds {
3636
enable = findProperty('measureBuildsEnabled')?.toBoolean() ?: false
37-
onBuildMetricsReadyListener { report ->
3837
SlowSlowTasksMetricsReporter.report(report)
3938
InternalA8cCiReporter.reportBlocking(
4039
report,

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ volley = '1.2.1'
8282
wiremock = '2.26.3'
8383
wiremockHttpClient = '4.3.5.1'
8484
wordPressLint = '2.1.0'
85+
wordPressLogin = '1.16.0'
8586
wordPressPersistentEditText = '1.0.2'
8687
wordPressUtils = '3.14.0'
8788
zendesk = '5.1.2'

0 commit comments

Comments
 (0)