-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (46 loc) · 1.36 KB
/
build.gradle
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'org.kordamp.gradle.project' version '0.15.1'
id 'org.kordamp.gradle.bintray' version '0.15.1'
}
config {
release = (rootProject.findProperty('release') ?: false).toBoolean()
info {
name = 'asciidoctor-mathx-extension'
vendor = 'Grooviter'
description = 'Asciidoctor Match Extension'
links {
website = 'https://github.com/grooviter/asciidoctor-mathx-extension'
issueTracker = 'https://github.com/grooviter/asciidoctor-mathx-extension/issues'
scm = 'https://github.com/grooviter/asciidoctor-mathx-extension'
}
people {
person {
id = 'mariogarcia'
name = 'Mario Garcia'
roles = ['developer']
}
}
}
licensing {
licenses {
license {
id = 'Apache-2.0'
}
}
}
bintray {
credentials {
username = "${ properties.bintrayUser ?: System.getenv('BINTRAY_USER') }"
password = "${ properties.bintrayKey ?: System.getenv('BINTRAY_KEY') }"
}
enabled = true
userOrg = 'grooviter'
name = "$artifactId"
githubRepo = 'grooviter/asciidoctor-mathx-extension'
}
}
allprojects {
repositories {
jcenter()
}
}