Search Gradle plugins

Version 1.0 (latest)

Created 20 August 2019.

This plugin generates a brief summary of some of the technical requirements for your app.

Using the plugins DSL:

plugins {
  id("com.bornfight.techinfocard") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.bornfight.techinfocard:TechInfoCard:1.0")
  }
}

apply(plugin = "com.bornfight.techinfocard")

Using the plugins DSL:

plugins {
  id "com.bornfight.techinfocard" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.bornfight.techinfocard:TechInfoCard:1.0"
  }
}

apply plugin: "com.bornfight.techinfocard"

Learn how to apply plugins to subprojects