Search Gradle plugins

com.offbeatmind.humane.gradle

This project brings rational and humane coding style (formatting) aid and enforcement tools, starting with Java and, with welcome help of others, other languages.

https://github.com/humanejava/humane

Sources: https://github.com/humanejava/humane

Version 0.1.3-SNAPSHOT (latest)

Created 18 March 2019.

This project brings rational and humane coding style (formatting) aid and enforcement tools, starting with Java and, with welcome help of others, other languages.

Using the plugins DSL:

plugins {
  id("com.offbeatmind.humane.gradle") version "0.1.3-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.offbeatmind.humane:humane-plugins-gradle:0.1.3-SNAPSHOT")
  }
}

apply(plugin = "com.offbeatmind.humane.gradle")

Using the plugins DSL:

plugins {
  id "com.offbeatmind.humane.gradle" version "0.1.3-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.offbeatmind.humane:humane-plugins-gradle:0.1.3-SNAPSHOT"
  }
}

apply plugin: "com.offbeatmind.humane.gradle"

Learn how to apply plugins to subprojects