de.kontext_e.jqassistant.gradle
Owner: Jens Nerche
Scans project artifacts, enriches with higher level concepts and applies constraints. See https://jqassistant.org/ for details.
https://github.com/kontext-e/jqassistant-gradle-plugin
Sources: https://github.com/kontext-e/jqassistant-gradle-plugin
Version 2.0.0
2.0.0
Created 11 June 2024.
Scans project artifacts, enriches with higher level concepts and applies constraints. See https://jqassistant.org/ for details.
Using the plugins DSL:
plugins {
id("de.kontext_e.jqassistant.gradle") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.kontext_e.jqassistant.gradle:jqassistant-gradle-plugin:2.0.0")
}
}
apply(plugin = "de.kontext_e.jqassistant.gradle")
Using the plugins DSL:
plugins {
id "de.kontext_e.jqassistant.gradle" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.kontext_e.jqassistant.gradle:jqassistant-gradle-plugin:2.0.0"
}
}
apply plugin: "de.kontext_e.jqassistant.gradle"