com.hivemq.extension
Owner:
HiveMQ
A gradle plugin to ease the development of HiveMQ extensions
https://github.com/hivemq/hivemq-extension-gradle-plugin
Sources: https://github.com/hivemq/hivemq-extension-gradle-plugin.git
Version 3.1.0 (latest)
Created 13 October 2023.
A Gradle plugin to ease the development of HiveMQ extensions
Using the plugins DSL:
plugins {
id("com.hivemq.extension") version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.hivemq:hivemq-extension-gradle-plugin:3.1.0")
}
}
apply(plugin = "com.hivemq.extension")
Using the plugins DSL:
plugins {
id "com.hivemq.extension" version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.hivemq:hivemq-extension-gradle-plugin:3.1.0"
}
}
apply plugin: "com.hivemq.extension"