Compare commits
3 Commits
eb901cae0f
...
v1.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
1ca422a6a2
|
|||
|
5aa9488d9a
|
|||
|
32ededdae0
|
21
build.gradle
21
build.gradle
@@ -10,11 +10,11 @@ wrapper {
|
||||
}
|
||||
|
||||
project.group = "ru.di9.gradle"
|
||||
project.version = "1.1"
|
||||
project.version = "1.1.1"
|
||||
|
||||
gradlePlugin.plugins {
|
||||
commitlintPlugin {
|
||||
id = "ru.di9.commitlint"
|
||||
id = "ru.di9.gradle.commitlint"
|
||||
displayName = "commitlint plugin"
|
||||
description = "Simple commitlint plugin"
|
||||
implementationClass = "ru.di9.gradle.commitlint.CommitLintPlugin"
|
||||
@@ -31,4 +31,21 @@ publishing {
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
name = "Di9"
|
||||
url = uri("https://di9.ru/git/api/packages/Voomra/maven")
|
||||
def giteaToken = System.getenv("GITEA_TOKEN")
|
||||
|
||||
credentials(HttpHeaderCredentials) {
|
||||
name = "Authorization"
|
||||
value = "token ${giteaToken}"
|
||||
}
|
||||
|
||||
authentication {
|
||||
header(HttpHeaderAuthentication)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user