Search Gradle plugins

co.coxes.maven-settings-gitlab

Gradle plugin for exposing Maven settings file configuration to Gradle project. Supports header authentication for GitLab

https://github.com/acidbee/gradle-maven-settings-plugin

Sources: https://github.com/acidbee/gradle-maven-settings-plugin

Version 0.6.2 (latest)

Created 10 February 2020.

Gradle plugin for exposing Maven settings file configuration to Gradle project. Supports header authentication for GitLab

Using the plugins DSL:

plugins {
  id("co.coxes.maven-settings-gitlab") version "0.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("co.coxes.gradle:maven-settings-gitlab-plugin:0.6.2")
  }
}

apply(plugin = "co.coxes.maven-settings-gitlab")

Using the plugins DSL:

plugins {
  id "co.coxes.maven-settings-gitlab" version "0.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.coxes.gradle:maven-settings-gitlab-plugin:0.6.2"
  }
}

apply plugin: "co.coxes.maven-settings-gitlab"

Learn how to apply plugins to subprojects