Incremental scan,integrate Lint、KtLint、UnitTest、Checkstyle、Findbugs、Pmd, powerful and easy to use.
- Base on the Git version control, compare to the latest success scan => Only scan the changed module
- Base on the local build cache => If there isn't any change compare to the last scan tasks will finish with
up-to-data
as far as possible
On the build.gradle
at your root project:
buildscript {
dependencies {
classpath 'com.liulishuo.okcheck:gradle:0.2.8'
}
}
allprojects {
apply plugin: 'okcheck'
}
Done! Everything is ready to scan, now you can check with 6 job just run ./gradlew okcheckDebug
and just see result, and all report is settle down the build/reports
for the root project as default(But if you want all reports save on the origin directory, just set destination
to project.buildDir
).
There is Snapshot version also valid, if you want to use snapshot version, please add repository on the build.gradle
:
buildscript {
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
}
When you run okcheck
task, we will compile and check with all variant
(As usual, there are two variant
as debug
and release
), so, normally you just need to check with one variant
to increase scan speed, such as okcheckDebug
.
./gradlew okcheckDebug
: Run the okcheck task for the Debug build type../gradlew cleanOkcheckDiff
: Clean all cached success commit id(which is on the~/.okcheck
folder as default), since then the next time we will scan all module../gradlew -PignoreOkcheckDiff okcheck
: Run the okcheck task and ignore cached success commit id, which will raise run okcheck for whole module../gradlew -PignoreOkCheckDiff :module1:okcheck
: Run the okcheck task for the module1 and ignore its cached success commit id, which will raise run okcheck certainly even if there isn't any change compare to last success scan.
For the convenient, all value on the bellow is the default value as example, the follow code is write on the build.gradle
at the root project.
allprojects {
apply plugin: 'okcheck'
okcheck {
exclude = ['**/proto/*.java']
destination = project.rootProject.buildDir
unittest {
enabled = true
}
lint {
enabled = true
exclude = ['**/proto/*.java']
}
ktlint {
enabled = true
exclude = ['**/proto/*.java']
version = "0.22.0"
}
checkstyle {
enabled = true
exclude = ['**/proto/*.java']
// We will use the default config build-in the okcheck
configFile = null
}
findbugs {
enabled = true
exclude = ['**/proto/*.java']
effort = "default"
// Whether allow the build to continue if there are warnings
ignoreFailures = false
// We will use the default excludeFilter file build-in the okcheck
excludeFilter = null
}
pmd {
enabled = true
exclude = ['**/proto/*.java']
// Whether allow the build to continue if there are warnings
ignoreFailures = false
// We will use the default ruleSetFiles build-in the okcheck
ruleSetFiles = null
}
coverageReport {
xml.enabled = false
html.enabled = false
csv.enabled = false
}
}
}
- As you know, the first time of running okcheck will check all module as default
- If you want to suppress some methods or lines for
checkstyle
task, as default build-in checkstyle config, you just need to addsuppressions.xml
file on your root project directory and define them on it.
Following paths are exclude on checkstyle
, findbugs
, pmd
as default:
**/gen/**
**/test/**
**/proto/*.java
**/protobuf/*.java
**/com/google/**/*.java
Copyright (c) 2018 LingoChamp Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.