com.javiersc.hubdle
Owner: Javier Segovia Córdoba
Easy setup for each kind of project
https://github.com/JavierSegoviaCordoba/hubdle
Sources: https://github.com/JavierSegoviaCordoba/hubdle
Version 0.2.0-alpha.33
0.2.0-alpha.33
Created 26 July 2022.
Easy setup for each kind of project
Using the plugins DSL:
plugins {
id("com.javiersc.hubdle") version "0.2.0-alpha.33"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.javiersc.hubdle:hubdle-gradle-plugin:0.2.0-alpha.33")
}
}
apply(plugin = "com.javiersc.hubdle")
Using the plugins DSL:
plugins {
id "com.javiersc.hubdle" version "0.2.0-alpha.33"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.javiersc.hubdle:hubdle-gradle-plugin:0.2.0-alpha.33"
}
}
apply plugin: "com.javiersc.hubdle"