Signal-Android/lintchecks/build.gradle

18 lines
388 B
Groovy
Raw Normal View History

2020-05-01 16:19:24 -03:00
apply plugin: 'java-library'
dependencies {
compileOnly lintLibs.lint.api
compileOnly lintLibs.lint.checks
2020-05-01 16:19:24 -03:00
testImplementation lintLibs.lint.tests
testImplementation testLibs.junit.junit
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')
}
}