com.yazan98.vortex.plugin
Owner: Yazan Tarifi
Vortex Gradle Plugin To Manage Vortex Applications (Android)
Sources: https://github.com/Yazan98/Vortex-Plugin.git
Version 0.0.1 (latest)
0.0.1
Created 10 August 2019.
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
Vortex Gradle Plugin To Manage Vortex Applications (Android)
Using the plugins DSL:
plugins {
id("com.yazan98.vortex.plugin") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.yazan98.vortex:Vortex-Plugin:0.0.1")
}
}
apply(plugin = "com.yazan98.vortex.plugin")
Using the plugins DSL:
plugins {
id "com.yazan98.vortex.plugin" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.yazan98.vortex:Vortex-Plugin:0.0.1"
}
}
apply plugin: "com.yazan98.vortex.plugin"