io.freefair.maven-optional
Owner: Lars Grefer
Adds a maven-like 'optional' configuration to your gradle build
https://docs.freefair.io/gradle-plugins/8.11/reference/
Sources: https://github.com/freefair/gradle-plugins
Version 3.5.4
3.5.4
Created 19 May 2019.
Adds a maven-like 'optional' configuration to your gradle build
Using the plugins DSL:
plugins {
id("io.freefair.maven-optional") version "3.5.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.freefair.gradle:maven-plugin:3.5.4")
}
}
apply(plugin = "io.freefair.maven-optional")
Using the plugins DSL:
plugins {
id "io.freefair.maven-optional" version "3.5.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.freefair.gradle:maven-plugin:3.5.4"
}
}
apply plugin: "io.freefair.maven-optional"