Skip to content

Commit 34b35de

Browse files
committed
chore: use intellij gradle plugin 1.1.4 (#35)
Signed-off-by: Andre Dietisheim <[email protected]>
1 parent 9011fb8 commit 34b35de

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

build.gradle

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.jetbrains.intellij"
2+
id "org.jetbrains.intellij" version "${intellijPluginVersion}"
33
id "idea"
44
}
55

@@ -12,19 +12,19 @@ runIdeForUiTests {
1212
}
1313

1414
intellij {
15-
version ideaVersion //for a full list of Jetbrains IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
16-
pluginName 'Telemetry by Red Hat'
17-
updateSinceUntilBuild false
15+
version = ideaVersion //for a full list of Jetbrains IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
16+
pluginName = 'Telemetry by Red Hat'
17+
updateSinceUntilBuild = false
1818
}
1919

2020
patchPluginXml {
21-
sinceBuild sinceIdeaBuild
22-
version projectVersion
21+
sinceBuild = sinceIdeaBuild
22+
version = projectVersion
2323
}
2424

2525
publishPlugin {
26-
token jetBrainsToken
27-
channels jetBrainsChannel
26+
token = jetBrainsToken
27+
channels = [jetBrainsChannel]
2828
}
2929

3030
dependencies {
@@ -65,11 +65,6 @@ java {
6565
withSourcesJar()
6666
}
6767

68-
publishPlugin {
69-
token jetBrainsToken
70-
channels jetBrainsChannel
71-
}
72-
7368
repositories {
7469
mavenCentral()
7570
mavenLocal()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ideaVersion = IC-2019.3
33
# https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
44
sinceIdeaBuild=193.5233.102
55
projectVersion=0.0.3-SNAPSHOT
6-
intellijPluginVersion=0.6.5
6+
intellijPluginVersion=1.1.4
77
jetBrainsToken=invalid
88
jetBrainsChannel=stable
99
nexusUser=invalid

0 commit comments

Comments
 (0)