Search Gradle plugins

Version 1.0.0-SNAPSHOT (latest)

Created 24 September 2015.

Simple plugin for publishing sources and javadoc in java projects

Using the plugins DSL:

plugins {
  id("com.github.skazzyy.sources") version "1.0.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.skazzyy.gradle.plugins:sources-gradle-plugin:1.0.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.skazzyy.sources")

Using the plugins DSL:

plugins {
  id "com.github.skazzyy.sources" version "1.0.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.skazzyy.gradle.plugins:sources-gradle-plugin:1.0.0-SNAPSHOT"
  }
}

apply plugin: "com.github.skazzyy.sources"

Learn how to apply plugins to subprojects