搜索 Gradle 插件

com.github.jruby-gradle.core

所有者: R. Tyler Croy

在 Gradle 上运行 JRuby 相关插件的核心理念

https://github.com/jruby-gradle/jruby-gradle-plugin

版本 2.1.0-alpha.2 (最新)

2.1.0-alpha.2

创建于 2020 年 11 月 23 日。

此插件为 JRuby/Gradle 提供一些核心依赖关系解析

使用插件 DSL

plugins {
  id("com.github.jruby-gradle.core") version "2.1.0-alpha.2"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.jruby-gradle:jruby-gradle-core-plugin:2.1.0-alpha.2")
  }
}

apply(plugin = "com.github.jruby-gradle.core")

使用插件 DSL

plugins {
  id "com.github.jruby-gradle.core" version "2.1.0-alpha.2"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.jruby-gradle:jruby-gradle-core-plugin:2.1.0-alpha.2"
  }
}

apply plugin: "com.github.jruby-gradle.core"

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