Skip to content

vanioinformatika/vanio-gradle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ef4d6c0 · Apr 3, 2025

History

19 Commits
Jan 14, 2024
Jan 14, 2024
Apr 3, 2025
Sep 6, 2023
Apr 3, 2025
Sep 6, 2023
Sep 6, 2023
Sep 6, 2023
Jan 14, 2024

Repository files navigation

Vanio Gradle Plugins

Gradle convention plugin collection.

List of Plugins

  • common
  • apiDocs
  • testReport

Usage

Configure the plugin repository in settings.gradle.kts

pluginManagement {
    repositories {
        maven {
            name = "GitHubPackages"
            url = uri("https://maven.pkg.github.com/vanioinformatika/maven-releases")
            credentials {
                username = System.getenv("GPR_USERNAME")
                password = System.getenv("GPR_TOKEN")
            }
        }
    }
}

Add the necessary plugin (or plugins) to the plugins block in the build.gradle.kts

plugins {
    id("hu.vanio.gradle.common") version "0.0.3"
    id("hu.vanio.gradle.testReport") version "0.0.3"
    id("hu.vanio.gradle.apiDocs") version "0.0.3"
}