Skip to content
Snippets Groups Projects
Verified Commit 2ade2bc8 authored by Ira ¯\_(ツ)_/¯'s avatar Ira ¯\_(ツ)_/¯
Browse files

Update build script with some extra tasks and formatting filter

parent ce4823aa
No related branches found
No related tags found
No related merge requests found
Pipeline #5868 passed
......@@ -20,6 +20,10 @@ java {
}
}
googleJavaFormat {
include("src/*.java")
}
group = "org.archlinux"
version = "1.0.0"
......@@ -97,3 +101,13 @@ tasks.register("format") {
dependsOn("ktlintFormat")
dependsOn("googleJavaFormat")
}
tasks.register("checkFormat") {
dependsOn("ktlintCheck")
dependsOn("verifyGoogleJavaFormat")
}
tasks.register("checkStyle") {
dependsOn("checkstyleMain")
dependsOn("checkstyleTest")
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment