com.huanshankeji.team.default-github-packages-maven-publish
Owner: Shreck Ye
GitHub Packages Maven publish (to Huanshankeji team's repository) with default conventions
https://github.com/huanshankeji/gradle-common
Sources: https://github.com/huanshankeji/gradle-common.git
Version 0.5.0
0.5.0
Created 30 January 2024.
GitHub Packages Maven publish (to Huanshankeji team's repository) with default conventions
Using the plugins DSL:
plugins {
id("com.huanshankeji.team.default-github-packages-maven-publish") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.huanshankeji.team:gradle-plugins:0.5.0")
}
}
apply(plugin = "com.huanshankeji.team.default-github-packages-maven-publish")
Using the plugins DSL:
plugins {
id "com.huanshankeji.team.default-github-packages-maven-publish" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.huanshankeji.team:gradle-plugins:0.5.0"
}
}
apply plugin: "com.huanshankeji.team.default-github-packages-maven-publish"