123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- plugins {
- id 'checkstyle'
- id 'com.squareup.wire' version '4.4.0'
- }
- test {
-
- if (System.properties.containsKey('downloader')) {
- systemProperty('downloader', System.getProperty('downloader'))
- }
- useJUnitPlatform()
- dependsOn checkstyleMain
- }
- checkstyle {
- getConfigDirectory().set(rootProject.file("checkstyle"))
- ignoreFailures
- showViolations
- toolVersion
- }
- wire
- java
- }
- }
- checkstyleTest
- enabled //
- }
- dependencies
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
- implementation
-
-
- implementation
- checkstyle
- testImplementation
- testImplementation
- testRuntimeOnly
- testImplementation
- testImplementation
- }
|