com.figure.gradle
Owner: Figure OSS
A Gradle plugin for configuring common Figure settings and repositories
https://github.com/FigureTechnologies/figure-gradle-plugins
Sources: https://github.com/FigureTechnologies/figure-gradle-plugins.git
Version 3.7.1-major-release.20
3.7.1-major-release.20
Created 08 January 2024.
A Gradle plugin for configuring common Figure settings and repositories
Using the plugins DSL:
plugins {
id("com.figure.gradle") version "3.7.1-major-release.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.figure.gradle:bootstrap:3.7.1-major-release.20")
}
}
apply(plugin = "com.figure.gradle")
Using the plugins DSL:
plugins {
id "com.figure.gradle" version "3.7.1-major-release.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.figure.gradle:bootstrap:3.7.1-major-release.20"
}
}
apply plugin: "com.figure.gradle"