forked from marytts/marytts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publishLogic.gradle
165 lines (163 loc) · 5.96 KB
/
publishLogic.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
apply plugin: 'maven-publish'
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
pom {
name = 'MaryTTS'
description = 'An open-source, multilingual Text-to-Speech Synthesis platform written in Java'
url = 'http://mary.dfki.de'
inceptionYear = '2000'
organization {
name = 'DFKI GmbH'
url = 'https://dfki.de/'
}
licenses {
license {
name = 'GNU Lesser General Public License v3.0'
url = 'https://www.gnu.org/licenses/lgpl-3.0-standalone.html'
}
}
developers {
developer {
name = 'Sébastien Le Maguer'
url = 'https://github.com/seblemaguer'
}
developer {
name = 'Ingmar Steiner'
url = 'https://github.com/psibre'
}
developer {
name = 'Marc Schröder'
url = 'https://github.com/marc1s'
}
}
contributors {
contributor {
name = 'Timo Baumann'
url = 'https://github.com/timobaumann'
}
contributor {
name = 'Stefanie Becker'
}
contributor {
name = 'Harald Berthelsen'
url = 'https://github.com/HaraldBerthelsen'
}
contributor {
name = 'Marcela Charfuelan'
url = 'https://github.com/marcelach1'
}
contributor {
name = 'Aitor Martínez Egurcegui'
url = 'https://github.com/aitorme'
}
contributor {
name = 'Paulo Faria'
}
contributor {
name = 'Peter Gilles'
url = 'https://github.com/PeterGilles'
}
contributor {
name = 'Tristan Hamilton'
url = 'https://github.com/munzey'
}
contributor {
name = 'Anna Hunecke'
}
contributor {
name = 'Sacha Krstulović'
}
contributor {
name = 'Giulio Paci'
url = 'https://github.com/giuliopaci'
}
contributor {
name = 'Sathish Chandra Pammi'
url = 'https://github.com/sathishpc'
}
contributor {
name = 'Jonathan Poitz'
url = 'https://github.com/jonathanPoitz'
}
contributor {
name = 'Benjamin Roth'
}
contributor {
name = 'Ali Shah'
url = 'https://github.com/alishah-ahmed'
}
contributor {
name = 'Atta Ur Rehman Shah'
url = 'https://github.com/attacomsian'
}
contributor {
name = 'Nickolay Shmyrev'
url = 'https://github.com/nshmyrev'
}
contributor {
name = 'Jochen Steigner'
}
contributor {
name = 'Maureen Tanuadji'
url = 'https://github.com/mochanz'
}
contributor {
name = 'Fabio Tesser'
url = 'https://github.com/ftesser'
}
contributor {
name = 'Oytun Türk'
}
contributor {
name = 'Mat Wilson'
}
contributor {
name = 'Sotaya Yakubu'
url = 'https://github.com/Rootex'
}
}
scm {
connection = 'scm:git:https://github.com/marytts/marytts.git'
developerConnection = 'scm:git:[email protected]/marytts/marytts.git'
url = 'https://github.com/marytts/marytts'
}
issueManagement {
system = 'GitHub'
url = 'https://github.com/marytts/marytts/issues'
}
ciManagement {
system = 'GitHub Actions'
url = 'https://github.com/marytts/marytts/actions'
}
distributionManagement {
downloadUrl = 'https://bintray.com/marytts/marytts/marytts'
}
}
}
}
repositories {
maven {
name 'Project'
url "$rootProject.buildDir/repo"
}
maven {
if (version.endsWith('-SNAPSHOT')) {
name 'OJO'
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
} else {
name 'Bintray'
url 'https://api.bintray.com/maven/marytts/marytts/marytts'
}
credentials {
username = findProperty('bintrayUser')
password = findProperty('bintrayApiKey')
}
}
}
}