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.0
1.2.0
Created 09 October 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.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.teamdev.jxbrowser:jxbrowser-gradle-plugin:1.2.0")
}
}
apply(plugin = "com.teamdev.jxbrowser")
Using the plugins DSL:
plugins {
id "com.teamdev.jxbrowser" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.teamdev.jxbrowser:jxbrowser-gradle-plugin:1.2.0"
}
}
apply plugin: "com.teamdev.jxbrowser"