Skip to content

Commit df76e0c

Browse files
plumpyronshapiro
authored andcommitted
Add support for JetBrains 2019.1 IDEs.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=236864433
1 parent 1dd2488 commit df76e0c

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

idea_plugin/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
plugins {
18-
id "org.jetbrains.intellij" version "0.3.11"
18+
id "org.jetbrains.intellij" version "0.4.4"
1919
}
2020

2121
repositories {
@@ -32,19 +32,18 @@ apply plugin: 'java'
3232
intellij {
3333
pluginName = "google-java-format"
3434
updateSinceUntilBuild = true
35-
version = "2018.3.2"
35+
version = "191.5849.21"
3636
}
3737

3838
patchPluginXml {
3939
pluginDescription = "Formats source code using the google-java-format tool. This version of " +
4040
"the plugin uses version ${googleJavaFormatVersion} of the tool."
41-
version = "${googleJavaFormatVersion}.0.0"
41+
version = "${googleJavaFormatVersion}.0.1"
4242
sinceBuild = '173'
4343
}
4444

4545
publishPlugin {
46-
username = project.ext.properties.jetbrainsPluginRepoUsername
47-
password = project.ext.properties.jetbrainsPluginRepoPassword
46+
token = project.ext.properties.jetbrainsPluginRepoToken
4847
}
4948

5049
sourceSets {

idea_plugin/resources/META-INF/plugin.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,10 @@
1212

1313
<change-notes><![CDATA[
1414
<dl>
15+
<dt>1.7.0.1</dt>
16+
<dd>Added support for 2019.1 IDEs.</dd>
1517
<dt>1.7.0.0</dt>
1618
<dd>Upgraded to google-java-format 1.7.</dd>
17-
<dt>1.6.2</dt>
18-
<dd>Add support for 2018.3 IDEs.</dd>
19-
<dt>1.6.1</dt>
20-
<dd>Reverted the default to disabled. A notification will be presented the first time you
21-
open a project asking if you want to enable google-java-format for that project.</dd>
22-
<dt>1.6.0</dt>
23-
<dd>Upgraded to google-java-format 1.6. Enabled the plugin by default.</dd>
2419
</dl>
2520
]]></change-notes>
2621

0 commit comments

Comments
 (0)