Search Gradle plugins

cn.wjee.gradle.oss

Owner: wodliwu

Gradle plugin used to publish and record the version file to oss

https://gitee.com/listening/wjee-gradle

Sources: https://gitee.com/listening/wjee-gradle.git

Version 1.0.0 (latest)

1.0.0

Created 17 May 2024.

Gradle plugin used to publish and record the version file to oss

Using the plugins DSL:

plugins {
  id("cn.wjee.gradle.oss") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("cn.wjee.gradle:gradle-oss:1.0.0")
  }
}

apply(plugin = "cn.wjee.gradle.oss")

Using the plugins DSL:

plugins {
  id "cn.wjee.gradle.oss" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "cn.wjee.gradle:gradle-oss:1.0.0"
  }
}

apply plugin: "cn.wjee.gradle.oss"

Learn how to apply plugins to subprojects