20 lines
353 B
Groovy
20 lines
353 B
Groovy
apply plugin: 'java-library'
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly lintLibs.lint.api
|
|
compileOnly lintLibs.lint.checks
|
|
|
|
testImplementation lintLibs.lint.tests
|
|
testImplementation testLibs.junit.junit
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes('Lint-Registry-v2': 'org.signal.lint.Registry')
|
|
}
|
|
}
|