Search Gradle plugins

Version 0.3.0

Created 23 September 2022.

Publishes to a GitLab project-level Maven endpoint.

Using the plugins DSL:

plugins {
  id("com.huanshankeji.gitlab-project-level-maven-endpoint-publish") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.3.0")
  }
}

apply(plugin = "com.huanshankeji.gitlab-project-level-maven-endpoint-publish")

Using the plugins DSL:

plugins {
  id "com.huanshankeji.gitlab-project-level-maven-endpoint-publish" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.3.0"
  }
}

apply plugin: "com.huanshankeji.gitlab-project-level-maven-endpoint-publish"

Learn how to apply plugins to subprojects