Search Gradle plugins

de.comahe.maven-settings

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.0.1

Created 01 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.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.comahe.maven.settings:maven-settings-plugin:0.0.1")
  }
}

apply(plugin = "de.comahe.maven-settings")

Using the plugins DSL:

plugins {
  id "de.comahe.maven-settings" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.comahe.maven.settings:maven-settings-plugin:0.0.1"
  }
}

apply plugin: "de.comahe.maven-settings"

Learn how to apply plugins to subprojects