Skip to content

Commit

Permalink
fix: maven plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Apr 18, 2020
1 parent 262ec77 commit 0dd29ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ internal object Version {
const val GRADLE_KTLINT = "9.2.1"
const val GRADLE_JACOCO = "0.16.0"
const val GRADLE_VERSIONS = "0.28.0"
const val GRADLE_MAVEN = "2.1"

const val KOTLIN = "1.3.72"
const val COROUTINES = "1.3.5"
Expand All @@ -30,8 +31,9 @@ object ProjectLib {
const val KTLINT = "org.jlleitschuh.gradle:ktlint-gradle:${Version.GRADLE_KTLINT}"
const val JACOCO = "com.vanniktech:gradle-android-junit-jacoco-plugin:${Version.GRADLE_JACOCO}"
const val VERSIONS = "com.github.ben-manes:gradle-versions-plugin:${Version.GRADLE_VERSIONS}"
const val MAVEN = "com.github.dcendents:android-maven-gradle-plugin:${Version.GRADLE_MAVEN}"

val all = setOf(ANDROID, KOTLIN, SERIALIZATION, DETEKT, KTLINT, JACOCO, VERSIONS)
val all = setOf(ANDROID, KOTLIN, SERIALIZATION, DETEKT, KTLINT, JACOCO, VERSIONS, MAVEN)
}

object ModuleLib {
Expand Down
2 changes: 1 addition & 1 deletion hal-livedata/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'maven'
apply plugin: 'com.github.dcendents.android-maven'

group = Maven.GROUP

Expand Down

0 comments on commit 0dd29ce

Please sign in to comment.