Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Update Android Gradle Plugin & fix missing dependencies when publishi…
Browse files Browse the repository at this point in the history
…ng POM

* fixes #21
  • Loading branch information
mannodermaus committed Sep 28, 2017
1 parent f867e38 commit c0ccc84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ buildscript {
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
}

dependencies {
classpath "com.android.tools.build:gradle:$GRADLE_PLUGIN_VERSION"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$BINTRAY_PLUGIN_VERSION"
classpath "digital.wup:android-maven-publish:$ANDROID_MAVEN_PLUGIN_VERSION"

// TODO Moving to Jitpack until the official 3.0.0 Release of android-maven-publish
// (https://github.com/wupdigital/android-maven-publish/issues/2)
// classpath "digital.wup:android-maven-publish:$ANDROID_MAVEN_PLUGIN_VERSION"
classpath "com.github.wupdigital:android-maven-publish:$ANDROID_MAVEN_PLUGIN_VERSION"

}
}

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Library metadata
GROUP_ID = de.mannodermaus.rxjava
ARTIFACT_ID = rxbonjour
VERSION_NAME = 1.0.0
VERSION_NAME = 1.0.1
LIBRARY_NAME = RxBonjour1.x
DESCRIPTION = Reactive spice added to Android's network service discovery API. (Compatible with RxJava 1)
WEB_URL = https://github.com/aurae/RxBonjour
Expand All @@ -22,9 +22,9 @@ MIN_SDK_VERSION = 14
TARGET_SDK_VERSION = 26

# Dependency versions (plugins)
GRADLE_PLUGIN_VERSION = 3.0.0-beta4
GRADLE_PLUGIN_VERSION = 3.0.0-beta6
BINTRAY_PLUGIN_VERSION = 1.7.3
ANDROID_MAVEN_PLUGIN_VERSION = 2.0.0
ANDROID_MAVEN_PLUGIN_VERSION = c27fa172da

# Dependency versions (library)
SUPPORT_LIBRARY_VERSION = 26.0.2
Expand Down

0 comments on commit c0ccc84

Please sign in to comment.