-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
39 lines (33 loc) · 948 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
`kotlin-dsl`
id("com.gradle.plugin-publish") version "0.12.0"
`maven-publish`
}
group = "io.github.0ffz"
version = "1.2.1"
repositories {
jcenter()
}
kotlinDslPluginOptions {
experimentalWarning.set(false)
}
pluginBundle {
website = "https://github.com/0ffz/gpr-for-gradle"
vcsUrl = "https://github.com/0ffz/gpr-for-gradle.git"
tags = listOf("github", "github-packages", "dependency", "maven", "repository")
}
gradlePlugin {
plugins {
register("github-packages") {
displayName = "GitHub Packages for gradle"
id = "io.github.0ffz.github-packages"
implementationClass = "io.github.offz.GithubPackagesPlugin"
description = "Cleanly add Github Packages maven repos with credentials in global gradle.properties or env variable (for Github Actions)"
}
}
}
/*publishing {
repositories {
maven("build/repository")
}
}*/