Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: libadblockplus-android-settings/build.gradle

Issue 29347926: Issue 4248 - Add codestyle check
Left Patch Set: fixed broken url in rules Created April 28, 2017, 5:55 a.m.
Right Patch Set: moved 'third_party' to review https://codereview.adblockplus.org/29567648/ Created Oct. 6, 2017, 11:33 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « build.gradle ('k') | libadblockplus-android-tests/build.gradle » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 apply plugin: 'com.android.library' 1 apply plugin: 'com.android.library'
2 apply plugin: 'checkstyle' 2 apply plugin: 'checkstyle'
3 3
4 android { 4 android {
5 compileSdkVersion 21 5 compileSdkVersion 21
6 buildToolsVersion "25.0.0" 6 buildToolsVersion "25.0.0"
7 7
8 defaultConfig { 8 defaultConfig {
9 minSdkVersion 21 9 minSdkVersion 21
10 targetSdkVersion 21 10 targetSdkVersion 21
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ignoreFailures = true 42 ignoreFailures = true
43 showViolations = true 43 showViolations = true
44 source 'src/org/adblockplus/' 44 source 'src/org/adblockplus/'
45 exclude '**/gen/**' 45 exclude '**/gen/**'
46 exclude '**/R.java' 46 exclude '**/R.java'
47 exclude '**/BuildConfig.java' 47 exclude '**/BuildConfig.java'
48 reports { 48 reports {
49 xml.destination "$project.buildDir/reports/checkstyle/main.xml" 49 xml.destination "$project.buildDir/reports/checkstyle/main.xml"
50 } 50 }
51 classpath = files() 51 classpath = files()
52 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_checks.xml") 52 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_production_checks.xml")
53 configProperties = [ 53 configProperties = [
54 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt") 54 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt")
55 ] 55 ]
56 } 56 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld