Skip to content

Commit 1e1ac40

Browse files
authored
Merge pull request #31 from ServiceStack/Layoric-patch-1
Update build.gradle
2 parents e7ddb8d + 2cc62fc commit 1e1ac40

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/ServiceStackIDEA/build.gradle

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,25 @@ if(System.env.BUILD_NUMBER != null && System.env.SERVICESTACKIDEA_PUBLISH_NIGHTL
1515

1616
String jbUser;
1717
String jbPass;
18+
String jbToken;
1819

1920

2021
if(properties.getProperty("jetbrains.plugins.user", null) == null) {
2122
properties.load(project.file('./local.properties').newDataInputStream())
2223
}
2324
jbUser = properties.getProperty("jetbrains.plugins.user");
2425
jbPass = properties.getProperty("jetbrains.plugins.password");
26+
jbToken = properties.getProperty("jetbrains.plugins.token");
2527

2628
intellij {
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+
}

0 commit comments

Comments
 (0)