Search Gradle plugins

Version 0.6.0-alpha-1 (latest)

0.6.0-alpha-1

Created 16 January 2023.

Adds a task for downloading Kotlin DL pretrained models from the model hub

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.kotlinx.kotlin-deeplearning-gradle-plugin") version "0.6.0-alpha-1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlinx:gradlePlugin:0.6.0-alpha-1")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlinx.kotlin-deeplearning-gradle-plugin")
  • Applying plugins to all subprojects .