Search Gradle plugins

io.github.okurashoichi.dynamodb.enhanced.codegen

Owner: bell

A Gradle plugin that generates Kotlin code based on DynamoDB table schemas using the DynamoDB Enhanced Client.

https://github.com/okurashoichi/dynamodb-enhanced-codegen

Sources: https://github.com/okurashoichi/dynamodb-enhanced-codegen

Version 0.1.1-alpha2

Created 19 December 2024.

A Gradle plugin that generates Kotlin code based on DynamoDB table schemas using the DynamoDB Enhanced Client.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.okurashoichi.dynamodb.enhanced.codegen") version "0.1.1-alpha2"
}

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("io.github.okurashoichi.dynamodb.enhanced.codegen:io.github.okurashoichi.dynamodb.enhanced.codegen.gradle.plugin:0.1.1-alpha2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.okurashoichi.dynamodb.enhanced.codegen")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.okurashoichi.dynamodb.enhanced.codegen:io.github.okurashoichi.dynamodb.enhanced.codegen.gradle.plugin:0.1.1-alpha2")
      }
    }
    
    apply(plugin = "io.github.okurashoichi.dynamodb.enhanced.codegen")
  • Applying plugins to all subprojects .