搜索 Gradle 插件

版本 0.5.2(最新版)

0.5.2

创建于 2022 年 8 月 26 日。

Jagr AutoGrader 的源代码提交 Gradle 插件

使用 插件 DSL

plugins {
  id("org.sourcegrade.submitter") version "0.5.2"
}

使用 旧插件应用

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

apply(plugin = "org.sourcegrade.submitter")

使用 插件 DSL

plugins {
  id "org.sourcegrade.submitter" version "0.5.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.sourcegrade:submitter:0.5.2"
  }
}

apply plugin: "org.sourcegrade.submitter"

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