Search Gradle plugins

hu.simplexion.z2.service

Kotlin Multiplatform compiler plugin to have client-server communication with the absolute minimum of boilerplate.

https://github.com/spxbhuhb/z2-service

Sources: https://github.com/spxbhuhb/z2-service.git

Version 2023.8.15 (latest)

Created 16 August 2023.

Kotlin Multiplatform compiler plugin to have client-server communication with the absolute minimum of boilerplate.

Add this plugin to your build using the plugins DSL:

plugins {
  id("hu.simplexion.z2.service") version "2023.8.15"
}

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("hu.simplexion.z2.service:hu.simplexion.z2.service.gradle.plugin:2023.8.15")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("hu.simplexion.z2.service")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("hu.simplexion.z2.service:hu.simplexion.z2.service.gradle.plugin:2023.8.15")
      }
    }
    
    apply(plugin = "hu.simplexion.z2.service")
  • Applying plugins to all subprojects .