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
{{ message }}
This repository was archived by the owner on Aug 26, 2021. It is now read-only.
<tdwidth="33%"><ahref="https://download.fastlane.tools">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
dryRun =false// Whether to run this as dry-run, without deploying
121
+
override =false
88
122
pkg {
89
123
repo ='maven'
90
124
name ='stag-library-compiler'
@@ -98,9 +132,19 @@ allprojects {
98
132
version {
99
133
name = project.version
100
134
vcsTag = project.version
135
+
gpg {
136
+
sign =true
137
+
passphrase =System.getenv('BINTRAY_GPG_PASSWORD')
138
+
}
139
+
mavenCentralSync {
140
+
sync =true//Optional (true by default). Determines whether to sync the version to Maven Central.
141
+
user =System.getenv('SONATYPE_TOKEN_USER') //OSS user token
142
+
password =System.getenv('SONATYPE_TOKEN_PASSWORD') //OSS user password
143
+
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