File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -15,24 +15,25 @@ if(System.env.BUILD_NUMBER != null && System.env.SERVICESTACKIDEA_PUBLISH_NIGHTL
1515
1616String jbUser;
1717String jbPass;
18+ String jbToken;
1819
1920
2021if (properties. getProperty(" jetbrains.plugins.user" , null ) == null ) {
2122 properties. load(project. file(' ./local.properties' ). newDataInputStream())
2223}
2324jbUser = properties. getProperty(" jetbrains.plugins.user" );
2425jbPass = properties. getProperty(" jetbrains.plugins.password" );
26+ jbToken = properties. getProperty(" jetbrains.plugins.token" );
2527
2628intellij {
2729 version ' IC-14.1.4'
2830 plugins ' maven'
2931 pluginName ' ServiceStackIDEA'
3032 updateSinceUntilBuild false
3133
32- publish {
33- username jbUser
34- password jbPass
35- pluginId ' 7749'
36- channel ' nightly'
37- }
38- }
34+ publishPlugin {
35+ token jbToken
36+ pluginId ' 7749'
37+ channel ' nightly'
38+ }
39+ }
You can’t perform that action at this time.
0 commit comments