Skip to content

Commit

Permalink
Merge pull request #1705 from dhis2/1.5
Browse files Browse the repository at this point in the history
fix: [VERSION-1.5.1] Update version to 1.5.1
  • Loading branch information
vgarciabnz authored Jan 27, 2022
2 parents fdd2691 + 11cd672 commit b3bc7f6
Show file tree
Hide file tree
Showing 142 changed files with 3,970 additions and 1,763 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ out
!.idea
.idea/*
!.idea/copyright
!.idea/gradle.xml
!.idea/scopes
.idea/scopes/*
!.idea/scopes/copyright.xml
Expand Down
20 changes: 20 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
repositories {
google()
mavenLocal()
jcenter()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
}

Expand All @@ -18,8 +18,9 @@ allprojects {
repositories {
maven { url "https://maven.google.com" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
jcenter()
google()
mavenCentral()
maven { url "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven" }
maven { url "https://jitpack.io" }
}
}
Expand Down
18 changes: 9 additions & 9 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ plugins {
id "kotlin-android"
id "kotlin-android-extensions"
id "kotlin-kapt"
id "io.gitlab.arturbosch.detekt" version "1.10.0"
//id "io.gitlab.arturbosch.detekt" version "1.18.0"
id "org.jetbrains.dokka" version "1.4.30" apply false
}

Expand All @@ -43,8 +43,8 @@ ext {
buildToolsVersion: "29.0.3",
minSdkVersion : 19,
targetSdkVersion : 29,
versionCode : 250,
versionName : "1.5.0"
versionCode : 251,
versionName : "1.5.1"
]

libraries = [
Expand Down Expand Up @@ -78,7 +78,7 @@ ext {
equalsVerifier : "3.4.1",
flipper : "0.83.0",
soloader : "0.10.1",
liveDataTesting : "1.1.2",
liveDataTesting : "1.2.0",
commonsLogging : "1.2",

// google
Expand Down Expand Up @@ -227,7 +227,7 @@ dependencies {
androidTestImplementation "commons-logging:commons-logging:${libraries.commonsLogging}"
androidTestImplementation "org.mockito:mockito-core:${libraries.mockito}"
androidTestImplementation "android.arch.core:core-testing:${libraries.coreTesting}"
androidTestImplementation "com.jraska.livedata:testing:${libraries.liveDataTesting}"
//androidTestImplementation "com.jraska.livedata:testing:${libraries.liveDataTesting}"
androidTestImplementation "androidx.test:runner:${libraries.testRunner}"
androidTestImplementation "com.squareup.okhttp3:logging-interceptor:${libraries.okHttp}"
androidTestImplementation("com.google.truth:truth:${libraries.truth}") {
Expand All @@ -250,7 +250,7 @@ repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}

detekt {
config = files("config/detekt.yml")
buildUponDefaultConfig = false
}
//detekt {
// config = files("config/detekt.yml")
// buildUponDefaultConfig = false
//}
4 changes: 2 additions & 2 deletions core/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
# Properties which are consumed by plugins/gradle-mvn-push.gradle plugin.
# They are used for publishing artifact to snapshot repository.

VERSION_NAME=1.5.0
VERSION_CODE=250
VERSION_NAME=1.5.1
VERSION_CODE=251

GROUP=org.hisp.dhis

Expand Down

This file was deleted.

Loading

0 comments on commit b3bc7f6

Please sign in to comment.