Search Gradle plugins

Version 0.1.4 (latest)

Created 31 May 2019.

Add S3 maven repositories to your project

Using the plugins DSL:

plugins {
  id("com.harborfund.gradle.common") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.harborfund.gradle:hc-common-gradle:0.1.4")
  }
}

apply(plugin = "com.harborfund.gradle.common")

Using the plugins DSL:

plugins {
  id "com.harborfund.gradle.common" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.harborfund.gradle:hc-common-gradle:0.1.4"
  }
}

apply plugin: "com.harborfund.gradle.common"

Learn how to apply plugins to subprojects