搜索Gradle插件

版本 0.1.1(最新版)

0.1.1

创建于2023年12月27日。

lwjgl助手插件使添加lwjgl依赖项变得更加容易。

使用插件DSL

plugins {
  id("io.github.dwarfley.lwjgl-helper") version "0.1.1"
}

使用旧插件的命令行应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.dwarfley:gradle-lwjgl-helper:0.1.1")
  }
}

apply(plugin = "io.github.dwarfley.lwjgl-helper")

使用插件DSL

plugins {
  id "io.github.dwarfley.lwjgl-helper" version "0.1.1"
}

使用旧插件的命令行应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.dwarfley:gradle-lwjgl-helper:0.1.1"
  }
}

apply plugin: "io.github.dwarfley.lwjgl-helper"

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