搜索Gradle插件

版本 0.7.0(最新版)

0.7.0

创建于 2023年12月9日。

为Simple Kotlin Project配置Kotlin多平台项目的Gradle插件

使用plugins DSL

plugins {
  id("io.github.edmondantes.simple.kmm.gradle.plugin") version "0.7.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.edmondantes:simple-kotlin-multiplatform-gradle-plugin:0.7.0")
  }
}

apply(plugin = "io.github.edmondantes.simple.kmm.gradle.plugin")

使用plugins DSL

plugins {
  id "io.github.edmondantes.simple.kmm.gradle.plugin" version "0.7.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.edmondantes:simple-kotlin-multiplatform-gradle-plugin:0.7.0"
  }
}

apply plugin: "io.github.edmondantes.simple.kmm.gradle.plugin"

学习如何应用插件到子项目中