搜索Gradle插件

com.teamdev.jxbrowser.gradle

所有者: TeamDev

已弃用:请使用 com.teamdev.jxbrowser。此插件将在项目中添加JxBrowser仓库,并提供应用JxBrowser依赖项的方便方法。

https://github.com/TeamDev-IP/JxBrowser-Gradle-Plugin

源代码: https://github.com/TeamDev-IP/JxBrowser-Gradle-Plugin

版本 0.0.3(最新版)

0.0.3

创建于2022年3月29日。

此插件将在项目中添加JxBrowser仓库,并提供应用JxBrowser依赖项的方便方法。

使用 插件DSL

plugins {
  id("com.teamdev.jxbrowser.gradle") version "0.0.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.teamdev.jxbrowser:jxbrowser-gradle-plugin:0.0.3")
  }
}

apply(plugin = "com.teamdev.jxbrowser.gradle")

使用 插件DSL

plugins {
  id "com.teamdev.jxbrowser.gradle" version "0.0.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.teamdev.jxbrowser:jxbrowser-gradle-plugin:0.0.3"
  }
}

apply plugin: "com.teamdev.jxbrowser.gradle"

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