Search Gradle plugins

com.teamdev.jxbrowser

Owner: TeamDev

This plug-in adds JxBrowser repository to the project and provides convenience methods for applying JxBrowser dependencies.

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

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

Version 1.2.1 (latest)

1.2.1

Created 09 October 2024.

Adds JxBrowser repository to the project and provides convenience methods for applying JxBrowser dependencies.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.teamdev.jxbrowser:jxbrowser-gradle-plugin:1.2.1")
      }
    }
    
    apply(plugin = "com.teamdev.jxbrowser")
  • Applying plugins to all subprojects .