com.exactpro.th2.gradle.publish
Owner: th2-gradle-plugins-ci
Plugin helps you configure your project to publish maven artifacts to sonatype
https://github.com/th2-net/th2-gradle-plugin
Sources: https://github.com/th2-net/th2-gradle-plugin.git
Version 0.1.4
0.1.4
Created 06 November 2024.
Plugin helps you configure your project to publish maven artifacts to sonatype
Using the plugins DSL:
plugins {
id("com.exactpro.th2.gradle.publish") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.exactpro.th2:th2-gradle-plugin:0.1.4")
}
}
apply(plugin = "com.exactpro.th2.gradle.publish")
Using the plugins DSL:
plugins {
id "com.exactpro.th2.gradle.publish" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.exactpro.th2:th2-gradle-plugin:0.1.4"
}
}
apply plugin: "com.exactpro.th2.gradle.publish"