diff --git a/aztec/build.gradle b/aztec/build.gradle index fbacac837..ae7c97f3a 100644 --- a/aztec/build.gradle +++ b/aztec/build.gradle @@ -72,6 +72,8 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinCoroutinesVersion" implementation 'org.apache.commons:commons-lang3:3.8.1' + + lintChecks "org.wordpress:lint:$wordpressLintVersion" } project.afterEvaluate { diff --git a/build.gradle b/build.gradle index 34616bff1..48736488a 100644 --- a/build.gradle +++ b/build.gradle @@ -69,6 +69,7 @@ ext { } ext { + // mixed gradlePluginVersion = '3.3.1' kotlinCoroutinesVersion = '1.6.4' tagSoupVersion = '1.2.1' @@ -80,5 +81,9 @@ ext { wordpressUtilsVersion = '3.5.0' espressoVersion = '3.0.1' + // other + wordpressLintVersion = '2.0.0' + + // project aztecProjectDependency = project.hasProperty("aztecVersion") ? "org.wordpress:aztec:${project.getProperty("aztecVersion")}" : project(":aztec") }