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.0.2 (latest)

Created 19 March 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.teamdev.jxbrowser"

Learn how to apply plugins to subprojects