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

Delta Between Two Patch Sets: libadblockplus-android-webviewapp/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-webview/build.gradle ('k') | libadblockplus-android/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.application' 1 apply plugin: 'com.android.application'
2 apply plugin: 'checkstyle' 2 apply plugin: 'checkstyle'
3 3
4 allprojects { 4 allprojects {
5 repositories { 5 repositories {
6 mavenLocal() 6 mavenLocal()
7 mavenCentral() 7 mavenCentral()
8 } 8 }
9 } 9 }
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ignoreFailures = true 55 ignoreFailures = true
56 showViolations = true 56 showViolations = true
57 source 'src/org/adblockplus/' 57 source 'src/org/adblockplus/'
58 exclude '**/gen/**' 58 exclude '**/gen/**'
59 exclude '**/R.java' 59 exclude '**/R.java'
60 exclude '**/BuildConfig.java' 60 exclude '**/BuildConfig.java'
61 reports { 61 reports {
62 xml.destination "$project.buildDir/reports/checkstyle/main.xml" 62 xml.destination "$project.buildDir/reports/checkstyle/main.xml"
63 } 63 }
64 classpath = files() 64 classpath = files()
65 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_checks.xml") 65 configFile = file("${rootProject.rootDir}/third_party/checkstyle/java/rules/ eyeo_production_checks.xml")
66 configProperties = [ 66 configProperties = [
67 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt") 67 "checkstyle.header.file" : file("${rootProject.rootDir}/third_party/chec kstyle/java/res/header.txt")
68 ] 68 ]
69 } 69 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld