搜索Gradle插件

版本 0.0.4 (最新版本)

0.0.4

创建于 2021年2月1日。

简化sciJava在Gradle中的版本适配

使用插件DSL

plugins {
  id("com.github.elect86.sciJava") version "0.0.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.elect86:sciJava:0.0.4")
  }
}

apply(plugin = "com.github.elect86.sciJava")

使用插件DSL

plugins {
  id "com.github.elect86.sciJava" version "0.0.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.elect86:sciJava:0.0.4"
  }
}

apply plugin: "com.github.elect86.sciJava"

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