com.github.turansky.kfc.yfiles
Owner: Victor Turansky
Provide configuration for yFiles
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Version 2.15.0 (latest)
2.15.0
Created 05 March 2021.
Provide configuration for yFiles
Using the plugins DSL:
plugins {
id("com.github.turansky.kfc.yfiles") version "2.15.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.15.0")
}
}
apply(plugin = "com.github.turansky.kfc.yfiles")
Using the plugins DSL:
plugins {
id "com.github.turansky.kfc.yfiles" version "2.15.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.15.0"
}
}
apply plugin: "com.github.turansky.kfc.yfiles"