mirror of
https://github.com/micahflee/TM-SGNL-Android.git
synced 2025-06-03 05:53:52 +02:00
17 lines
388 B
Groovy
17 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')
|
|
}
|
|
}
|