com.github.starestarrysky.site-gradle-plugin
Owner: 凝视星空
com.github.github:site-maven-plugin + org.kohsuke:github-api = this.
https://github.com/StareStarrySky/site-gradle-plugin
Sources: https://github.com/StareStarrySky/site-gradle-plugin
Version 1.0.2 (latest)
1.0.2
Created 20 April 2021.
com.github.github:site-maven-plugin + org.kohsuke:github-api = this.
Using the plugins DSL:
plugins {
id("com.github.starestarrysky.site-gradle-plugin") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.starestarrysky:site-gradle-plugin:1.0.2")
}
}
apply(plugin = "com.github.starestarrysky.site-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.github.starestarrysky.site-gradle-plugin" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.starestarrysky:site-gradle-plugin:1.0.2"
}
}
apply plugin: "com.github.starestarrysky.site-gradle-plugin"