搜索Gradle插件

org.gatored.gatorgradle

Gradle插件,将自动评分工具GatorGrader集成为可运行、可配置的任务

https://gatoreducator.github.io/gatorgradle/

来源: https://github.com/gatored/gatorgradle

版本 0.5.2(最新版)

0.5.2

创建于 2022年4月25日。

整合GatorGrader检查作为任务,如在美国阿勒格尼学院所使用。

使用插件DSL

plugins {
  id("org.gatored.gatorgradle") version "0.5.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.gatored:gatorgradle:0.5.2")
  }
}

apply(plugin = "org.gatored.gatorgradle")

使用插件DSL

plugins {
  id "org.gatored.gatorgradle" version "0.5.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.gatored:gatorgradle:0.5.2"
  }
}

apply plugin: "org.gatored.gatorgradle"

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