We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a833a commit 334b861Copy full SHA for 334b861
build.gradle
@@ -44,6 +44,17 @@ idea {
44
apply plugin: 'org.jetbrains.intellij'
45
intellij {
46
version ideaVersion
47
+
48
+ publish {
49
+ username = project.hasProperty('jetbrainsUser') \
50
+ ? project.property('jetbrainsUser') \
51
+ : System.getenv('JETBRAINS_USER')
52
+ password = project.hasProperty('jetbrainsPassword') \
53
+ ? project.property('jetbrainsPassword') \
54
+ : System.getenv('JETBRAINS_PASSWORD')
55
+ pluginId = '8277'
56
+ channel = 'default'
57
+ }
58
}
59
60
apply plugin: 'java'
0 commit comments