Skip to content

Commit

Permalink
- Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MayconCardoso committed Feb 25, 2021
1 parent e11b452 commit 85895ad
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 16 deletions.
4 changes: 0 additions & 4 deletions build-dependencies.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion data/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation project(path: submodulesPlatform.domain)

// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$KOTLIN_COROUTINES_CORE"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$KOTLIN_COROUTINES_CORE"
implementation"androidx.lifecycle:lifecycle-livedata-ktx:$ANDROID_LIFECYCLE"
Expand Down
2 changes: 1 addition & 1 deletion domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'com.adarshr.test-logger'
dependencies {
implementation project(path: submodulesLibraries.logger)

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$KOTLIN_COROUTINES_CORE"
implementation "com.google.code.gson:gson:$GOOGLE_GSON"

Expand Down
2 changes: 1 addition & 1 deletion features/feature-stock-share-filter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {

// Platform
implementation "androidx.appcompat:appcompat:$ANDROID_APCOMPACT"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"

// Android ARQ
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$ANDROID_LIFECYCLE"
Expand Down
2 changes: 1 addition & 1 deletion features/feature-stock-share/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {

// Platform
implementation "androidx.appcompat:appcompat:$ANDROID_APCOMPACT"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"

// Android ARQ
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$ANDROID_LIFECYCLE"
Expand Down
2 changes: 1 addition & 1 deletion features/feature-timeline-balance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {

// Platform
implementation "androidx.appcompat:appcompat:$ANDROID_APCOMPACT"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"

// Android ARQ
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$ANDROID_LIFECYCLE"
Expand Down
2 changes: 1 addition & 1 deletion libraries/library-architecture-code-generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.adarshr.test-logger'

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation "com.mctech.architecture:generator:$MCTECH_ARCHITECTUER_GENERATOR"

}
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class StockTradeFeatureGradleModuleTemplate(moduleFilePath: ModuleFilePath) :

output.printTabulate("// Platform")
output.printTabulate("implementation \"androidx.appcompat:appcompat:\$ANDROID_APCOMPACT\"")
output.printTabulate("implementation \"org.jetbrains.kotlin:kotlin-stdlib-jdk7:\$KOTLIN_VERSION\"")
output.printTabulate("implementation \"org.jetbrains.kotlin:kotlin-stdlib-jdk8:\$KOTLIN_VERSION\"")
output.blankLine()

output.printTabulate("// Android ARQ")
Expand Down
2 changes: 1 addition & 1 deletion libraries/library-chart/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {

dependencies {
implementation "androidx.appcompat:appcompat:$ANDROID_APCOMPACT"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation "com.google.android.material:material:$VIEW_MATERIAL_DESIGN"
implementation "androidx.constraintlayout:constraintlayout:$VIEW_CONSTRAINT_LAYOUT"
}
2 changes: 1 addition & 1 deletion libraries/library-design-system/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {

dependencies {
implementation "androidx.appcompat:appcompat:$ANDROID_APCOMPACT"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation "com.google.android.material:material:$VIEW_MATERIAL_DESIGN"
implementation "androidx.constraintlayout:constraintlayout:$VIEW_CONSTRAINT_LAYOUT"
}
2 changes: 1 addition & 1 deletion libraries/library-logger-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.adarshr.test-logger'

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation project(path: submodulesLibraries.logger)
}
2 changes: 1 addition & 1 deletion libraries/library-logger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apply plugin: 'kotlin'
apply plugin: 'com.adarshr.test-logger'

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
}
2 changes: 1 addition & 1 deletion testing/testing-data-factory/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ apply plugin: 'com.adarshr.test-logger'

dependencies {
implementation project(path: submodulesPlatform.domain)
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$COROUTINES"
}

0 comments on commit 85895ad

Please sign in to comment.