搜索Gradle插件

版本 0.7.0 (最新)

0.7.0

创建于 2022年12月7日。

Gradle的Praat提供程序

使用 插件DSL

plugins {
  id("io.github.m2ci-msp.praat-wrapper") version "0.7.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.m2ci-msp:gradle-praat-wrapper-plugin:0.7.0")
  }
}

apply(plugin = "io.github.m2ci-msp.praat-wrapper")

使用 插件DSL

plugins {
  id "io.github.m2ci-msp.praat-wrapper" version "0.7.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.m2ci-msp:gradle-praat-wrapper-plugin:0.7.0"
  }
}

apply plugin: "io.github.m2ci-msp.praat-wrapper"

了解如何将插件应用于子项目