mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-06-21 22:30:43 -04:00
Also add checkstyle to the privileged extension
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'checkstyle'
|
||||
|
||||
dependencies {
|
||||
compile project(':privileged-api-lib')
|
||||
@@ -29,3 +34,12 @@ android {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
task checkstyle(type: Checkstyle) {
|
||||
configFile file("${project.rootDir}/config/checkstyle/checkstyle.xml")
|
||||
source 'src'
|
||||
include '**/*.java'
|
||||
exclude '**/gen/**'
|
||||
|
||||
classpath = files()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user