Skip to content

Commit

Permalink
Replaced the Maven plugin from dcendents with one from sky-uk
Browse files Browse the repository at this point in the history
Updated publishVersion from 0.0.8 to 1.1.3
Updated libraryVersion from 1.1.2 to 1.1.3
  • Loading branch information
slavipetrov committed Aug 14, 2019
1 parent f58f82a commit 17e10f9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ buildscript {
classpath "com.android.tools.build:gradle:$versions.gradlePlugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$versions.bintrayPlugin"
classpath "com.github.dcendents:android-maven-gradle-plugin:$versions.mavenPlugin"
}
}

Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ext.versions = [
minSdk : 19,
compileSdk : 29,
buildTools : '28.0.3',
publishVersion : '0.0.8',
publishVersion : '1.1.3',
publishVersionCode: 1,
gradlePlugin : '3.4.2',
bintrayPlugin : '1.8.4',
Expand Down
24 changes: 11 additions & 13 deletions library/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
* limitations under the License.
*/

apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
apply from: 'keystore.gradle'

ext {
publishedGroupId = 'bg.devlabs.fullscreenvideoview'
artifactId = 'library'
libraryVersion = '1.1.2'
libraryVersion = '1.1.3'
}

version = libraryVersion
Expand All @@ -42,16 +41,13 @@ bintray {
}
}

install {
repositories.mavenInstaller {
pom.project {
packaging 'aar'
groupId publishedGroupId
artifactId artifactId
version libraryVersion
name artifactId
}
}
project.ext {
mavDevelopers = ["SP":"Slavi Petrov"]
mavSiteUrl = "https://github.com/dev-labs-bg/fullscreen-video-view"
mavGitUrl = mavSiteUrl + '.git'
mavProjectName = 'FullscreenVideoView'
mavLibraryLicenses = ["Apache-2.0":'http://www.apache.org/licenses/LICENSE-2.0.txt']
mavLibraryDescription = "FullscreenVideoView is a custom VideoView Android library which makes loading, setting up and going fullscreen for video views easy."
}

if (project.hasProperty("android")) {
Expand Down Expand Up @@ -87,4 +83,6 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
artifacts {
archives javadocJar
archives sourcesJar
}
}

apply from: 'https://raw.githubusercontent.com/sky-uk/gradle-maven-plugin/master/gradle-mavenizer.gradle'

0 comments on commit 17e10f9

Please sign in to comment.