2020-05-01 16:19:24 -03:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-08-06 07:09:43 -07:00
|
|
|
mavenCentral()
|
2020-05-01 16:19:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-14 14:57:04 -03:00
|
|
|
compileOnly lintLibs.lint.api
|
|
|
|
compileOnly lintLibs.lint.checks
|
2020-05-01 16:19:24 -03:00
|
|
|
|
2021-09-14 14:57:04 -03:00
|
|
|
testImplementation lintLibs.lint.tests
|
|
|
|
testImplementation testLibs.junit.junit
|
2022-09-27 08:26:44 -04:00
|
|
|
testImplementation lintLibs.lint.api
|
|
|
|
testImplementation lintLibs.lint.checks
|
2020-05-01 16:19:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Lint-Registry-v2': 'org.signal.lint.Registry')
|
|
|
|
}
|
|
|
|
}
|