Search Gradle plugins

com.caesarealabs.fast-aws

Setups up publishing to AWS in an efficient manner

https://caesarealabs.com

Sources: https://github.com/Caesarea-Labs

Version 1.2.0 (latest)

1.2.0

Created 08 September 2024.

Setups up publishing to AWS in an efficient manner

Using the plugins DSL:

plugins {
  id("com.caesarealabs.fast-aws") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.caesarealabs:fast-aws:1.2.0")
  }
}

apply(plugin = "com.caesarealabs.fast-aws")

Using the plugins DSL:

plugins {
  id "com.caesarealabs.fast-aws" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.caesarealabs:fast-aws:1.2.0"
  }
}

apply plugin: "com.caesarealabs.fast-aws"

Learn how to apply plugins to subprojects