de.comahe.maven-settings
Owner: comahe.de
Gradle plugin for exposing/reading Maven settings file configuration to Gradle project.Can be applied to 'Project' and 'Settings'
https://comahe-de.github.io/gradle-maven-settings-plugin
Sources: https://github.com/comahe-de/gradle-maven-settings-plugin
Version 0.1.0 (latest)
0.1.0
Created 03 November 2021.
Gradle plugin for exposing/reading Maven settings file configuration to Gradle project. Can be applied to 'Project' and 'Settings'
Using the plugins DSL:
plugins {
id("de.comahe.maven-settings") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.comahe.gradle.plugin:gradle-maven-settings-plugin:0.1.0")
}
}
apply(plugin = "de.comahe.maven-settings")
Using the plugins DSL:
plugins {
id "de.comahe.maven-settings" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.comahe.gradle.plugin:gradle-maven-settings-plugin:0.1.0"
}
}
apply plugin: "de.comahe.maven-settings"