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

Delta Between Two Patch Sets: libadblockplus-android/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 | « libadblockplus-android-webviewapp/build.gradle ('k') | no next file » | 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 16 5 compileSdkVersion 16
6 buildToolsVersion "25.0.0" 6 buildToolsVersion "25.0.0"
7 7
8 defaultConfig { 8 defaultConfig {
9 minSdkVersion 11 9 minSdkVersion 11
10 targetSdkVersion 16 10 targetSdkVersion 16
(...skipping 29 matching lines...) Expand all
40 ignoreFailures = true 40 ignoreFailures = true
41 showViolations = true 41 showViolations = true
42 source 'src/org/adblockplus/' 42 source 'src/org/adblockplus/'
43 exclude '**/gen/**' 43 exclude '**/gen/**'
44 exclude '**/R.java' 44 exclude '**/R.java'
45 exclude '**/BuildConfig.java' 45 exclude '**/BuildConfig.java'
46 reports { 46 reports {
47 xml.destination "$project.buildDir/reports/checkstyle/main.xml" 47 xml.destination "$project.buildDir/reports/checkstyle/main.xml"
48 } 48 }
49 classpath = files() 49 classpath = files()
50 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_checks.xml") 50 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_production_checks.xml")
51 configProperties = [ 51 configProperties = [
52 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt") 52 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt")
53 ] 53 ]
54 } 54 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld