mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-25 05:27:42 +00:00
18 lines
388 B
Groovy
18 lines
388 B
Groovy
apply plugin: 'java-library'
|
|
|
|
dependencies {
|
|
compileOnly lintLibs.lint.api
|
|
compileOnly lintLibs.lint.checks
|
|
|
|
testImplementation lintLibs.lint.tests
|
|
testImplementation testLibs.junit.junit
|
|
testImplementation lintLibs.lint.api
|
|
testImplementation lintLibs.lint.checks
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes('Lint-Registry-v2': 'org.signal.lint.Registry')
|
|
}
|
|
}
|