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