us.gov.dot.faa.ang.c55.gradle.release-type
Owner: Andrew A. Tasso
Gradle plugin for determining and declaring the release type for a project.
https://gitlab.com/federal-aviation-administration/ang-c55/gradle/huggs
Sources: https://gitlab.com/federal-aviation-administration/ang-c55/gradle/huggs.git
Version 8.1.1 (latest)
8.1.1
Created 09 September 2024.
Gradle plugin for determining and declaring the release type for a project.
Using the plugins DSL:
plugins {
id("us.gov.dot.faa.ang.c55.gradle.release-type") version "8.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("us.gov.dot.faa.ang.c55.gradle:release-type:8.1.1")
}
}
apply(plugin = "us.gov.dot.faa.ang.c55.gradle.release-type")
Using the plugins DSL:
plugins {
id "us.gov.dot.faa.ang.c55.gradle.release-type" version "8.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "us.gov.dot.faa.ang.c55.gradle:release-type:8.1.1"
}
}
apply plugin: "us.gov.dot.faa.ang.c55.gradle.release-type"