Signal-Android/lintchecks/build.gradle

21 wiersze
353 B
Groovy
Czysty Zwykły widok Historia

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