Search Gradle plugins

de.kontext_e.jqassistant.gradle

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 1.0.0-SNAPSHOT

Created 22 October 2019.

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 "1.0.0-SNAPSHOT"
}

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:1.0.0-SNAPSHOT")
  }
}

apply(plugin = "de.kontext_e.jqassistant.gradle")

Using the plugins DSL:

plugins {
  id "de.kontext_e.jqassistant.gradle" version "1.0.0-SNAPSHOT"
}

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:1.0.0-SNAPSHOT"
  }
}

apply plugin: "de.kontext_e.jqassistant.gradle"

Learn how to apply plugins to subprojects