fix #1539: checkstyle in data module & jobs for network, model module

This commit is contained in:
Pratyush Singh 2024-02-18 11:59:24 +05:30 committed by Rajan Maurya
parent b2156170ce
commit bdec63fc7d
3 changed files with 15 additions and 1 deletions

View File

@ -113,6 +113,12 @@ jobs:
- name: Static Analysis[Core:Common]
run: ./gradlew core:common:pmd
- name: Static Analysis[Core:Network]
run: ./gradlew core:network:pmd
- name: Static Analysis[Core:Model]
run: ./gradlew core:model:pmd
- name: Static Analysis[Feature:Auth]
run: ./gradlew feature:auth:pmd
@ -151,5 +157,11 @@ jobs:
- name: Static Analysis[Core:Common]
run: ./gradlew core:common:checkstyle
- name: Static Analysis[Core:Network]
run: ./gradlew core:network:checkstyle
- name: Static Analysis[Core:Model]
run: ./gradlew core:model:checkstyle
- name: Static Analysis[Feature:Auth]
run: ./gradlew feature:auth:checkstyle

View File

@ -28,7 +28,7 @@
<!-- General Code Style -->
<module name="LineLength">
<property name="max" value="100"/>
<property name="max" value="120"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
</module>

View File

@ -8,6 +8,8 @@ android {
namespace = "org.mifos.mobilewallet.core.model"
}
apply(from = "${project.rootDir}/config/quality/quality.gradle")
dependencies {
api(libs.kotlinx.datetime)
implementation(libs.jetbrains.kotlin.jdk7)