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 0.0.4

Created 03 October 2023.

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") version "0.0.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.teamdev.jxbrowser" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.teamdev.jxbrowser:JxBrowser-Gradle-Plugin:0.0.4"
  }
}

apply plugin: "com.teamdev.jxbrowser"

Learn how to apply plugins to subprojects