Bug 1891342 - Part 2: Update iconAccentViolet color to Violet70 r=android-reviewers...
[gecko.git] / mobile / android / fenix / mozilla-lint-rules / build.gradle
blobd0fd50d35e4708c5663fed4911bc2292d27ea4ab
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 apply plugin: 'java-library'
6 apply plugin: 'kotlin'
8 repositories {
9         gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository ->
10             maven {
11                 url repository
12                 if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) {
13                     allowInsecureProtocol = true
14                 }
15             }
16         }
19 dependencies {
20     compileOnly "com.android.tools.lint:lint-api:${Versions.lint}"
21     compileOnly "com.android.tools.lint:lint-checks:${Versions.lint}"
23     testImplementation "junit:junit:4.13.2"
24     testImplementation "com.android.tools.lint:lint:${Versions.lint}"
25     testImplementation "com.android.tools.lint:lint-tests:${Versions.lint}"
28 jar {
29     manifest {
30         attributes('Lint-Registry-v2': 'org.mozilla.fenix.lintrules.LintIssueRegistry')
31     }