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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("hu.simplexion.z2:z2-service-gradle-plugin:2023.8.15")
  }
}

apply(plugin = "hu.simplexion.z2.service")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "hu.simplexion.z2:z2-service-gradle-plugin:2023.8.15"
  }
}

apply plugin: "hu.simplexion.z2.service"

Learn how to apply plugins to subprojects