Search Gradle plugins

Version 1.4.52 (latest)

1.4.52

Created 03 January 2021.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Generate code for Simple Api and Simple DB, etc

Add this plugin to your build using the plugins DSL:

plugins {
  id("kim.jeonghyeon.kotlin-simple-api-gradle") version "1.4.52"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("kim.jeonghyeon:kotlin-simple-api-gradle:1.4.52")
      }
    }
    
    apply(plugin = "kim.jeonghyeon.kotlin-simple-api-gradle")
  • Applying plugins to all subprojects .