Search Gradle plugins

com.teamdev.jxbrowser.gradle

Owner: TeamDev

DEPRECATED: use com.teamdev.jxbrowser instead. 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 0.0.3 (latest)

Created 29 March 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects