Search Gradle plugins

in.shipk.s3plugin

Owner: Shipkin

A static course generator. So good, you can smoke it! S3 deployment extensions.

https://github.com/pivotal-education/shipkin

Sources: https://github.com/shipkin/shipkin

Version 0.2.1 (latest)

Created 22 February 2017.

A static course generator. So good, you can smoke it! S3 deployment extensions.

Add this plugin to your build using the plugins DSL:

plugins {
  id("in.shipk.s3plugin") version "0.2.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("in.shipk.s3plugin:in.shipk.s3plugin.gradle.plugin:0.2.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("in.shipk.s3plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("in.shipk.s3plugin:in.shipk.s3plugin.gradle.plugin:0.2.1")
      }
    }
    
    apply(plugin = "in.shipk.s3plugin")
  • Applying plugins to all subprojects .