You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// it is the name that appears in bintray when logged
101
+
name ="webviewer"
117
102
websiteUrl = siteUrl
118
103
vcsUrl = gitUrl
119
-
licenses = ['Apache-2.0']
104
+
licenses = ["Apache-2.0"]
120
105
publish =true
106
+
version {
107
+
gpg {
108
+
sign =true//Determines whether to GPG sign the files. The default is false
109
+
passphrase = properties.getProperty("bintray.gpg.password") //Optional. The passphrase for GPG signing'
110
+
}
111
+
// mavenCentralSync {
112
+
// sync = true //Optional (true by default). Determines whether to sync the version to Maven Central.
113
+
// user = properties.getProperty("bintray.oss.user") //OSS user token
114
+
// password = properties.getProperty("bintray.oss.password") //OSS user password
115
+
// close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
0 commit comments