com.raxdenstudios.publish-library
Owner: Ángel Gómez García
Allow to include basic configuration for commons modules in Android.
https://github.com/raxden/android-plugins
Sources: https://github.com/raxden/android-plugins.git
Version 0.56 (latest)
0.56
Created 15 May 2023.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Allow to include basic configuration for commons modules in Android.
Using the plugins DSL:
plugins {
id("com.raxdenstudios.publish-library") version "0.56"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.raxdenstudios:android-plugins:0.56")
}
}
apply(plugin = "com.raxdenstudios.publish-library")
Using the plugins DSL:
plugins {
id "com.raxdenstudios.publish-library" version "0.56"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.raxdenstudios:android-plugins:0.56"
}
}
apply plugin: "com.raxdenstudios.publish-library"