google-java-format icon indicating copy to clipboard operation
google-java-format copied to clipboard

GitHub release page for 1.14.0 has Eclipse plugin 1.13.0

Open PhilippWendler opened this issue 3 years ago • 3 comments

The release page on GitHub for 1.14.0 contains a google-java-format-eclipse-plugin-1.13.0.jar but not the expected google-java-format-eclipse-plugin-1.14.0.jar.

PhilippWendler avatar Feb 10 '22 06:02 PhilippWendler

Thanks. This is the first release using a new GitHub actions workflow, and obviously something went wrong there.

I think the mvn tycho-versions:update-eclipse-metadata -pl eclipse_plugin failed to update the version numbers for the Eclipse plugin, and that it's probably an updated version just with the wrong version numbers:

https://github.com/google/google-java-format/blob/2affc9899279b9ff8fd51df8a70d4e2b9cd309e0/.github/workflows/release.yml#L41

I'll try to sort it out.

cushon avatar Feb 11 '22 00:02 cushon

Happened again for 1.15.0.

PhilippWendler avatar Mar 07 '22 17:03 PhilippWendler

Forgot to update the version number in eclipse_plugin/pom.xml?

https://github.com/google/google-java-format/blob/edf036c7fd07a719c5197e04f8da181e7cdb81ee/eclipse_plugin/pom.xml#L25

norioxkimura avatar Apr 17 '22 07:04 norioxkimura

Note that as discussed in #835, the wrong version number also makes updating google-java-format tricky because if you just put a new JAR with the same version number in dropins, it seems to be ignored (at least this is what it looks like for me). So it would be nice to get this fixed for new versions.

PhilippWendler avatar Jan 20 '23 08:01 PhilippWendler

Occurred again for 1.16.0.

PhilippWendler avatar Feb 27 '23 06:02 PhilippWendler

Happend again for v1.17.0.

The plugin not only keeps the old version but also includes the old version of the google-java-format.jar

Content of https://github.com/google/google-java-format/releases/download/v1.17.0/google-java-format-eclipse-plugin-1.13.0.jar/lib/google-java-format.jar/META-INF/maven/com.google.googlejavaformat/google-java-format/pom.properties

#Created by Apache Maven 3.6.3
groupId=com.google.googlejavaformat
artifactId=google-java-format
version=1.13.0

bvo42 avatar Sep 06 '23 09:09 bvo42

Happened again for 1.18.0.

@cushon Any chance to get this resolved? Upgrading the Eclipse plugin is tedious because of this because Eclipse silently ignores a new JAR if it has the same version number. I suspect that several issues about the Eclipse plugin here would be resolved if the version is fixed.

PhilippWendler avatar Oct 04 '23 05:10 PhilippWendler

I am not currently using Eclipse and it isn't a supported IDE at my day job, which has been contributing the lack of support for Eclipse plugin here.

I adjusted the step that is supposed to be updated the versions for the eclipse plugin (https://github.com/google/google-java-format/blob/685a6c9ebd43aab9ef458379de7d3883bfee970f/.github/workflows/release.yml#L34C1-L35), and pushed a draft 1.18.1 release that seems have successfully updated the versions:

  • https://github.com/google/google-java-format/commit/1c5f836dd04d6a3be04f971b31b800d0d45a0be1
  • https://github.com/google/google-java-format/releases/tag/untagged-9270b5f5bb00eb1303bd

@PhilippWendler can you let me know if that looks good to you?

cushon avatar Oct 05 '23 03:10 cushon

@cushon Thank you very much! I would love to test this, but the last link is not working for me, and https://github.com/google/google-java-format/releases/tag/v1.18.1 doesn't have any JARs. Could you maybe upload it here?

PhilippWendler avatar Oct 05 '23 05:10 PhilippWendler

@PhilippWendler This is the build of the plugin: issue744.zip. (The .zip contains google-java-format-eclipse-plugin-1.18.1.jar.)

cushon avatar Oct 05 '23 13:10 cushon

Works perfectly for me!

I took my existing Eclipse installation with google-java-format 1.17.0 (which identifies itself as 1.13.0) and just put google-java-format-eclipse-plugin-1.18.1.jar into dropins. After a restart of Eclipse, I see version 1.18.1 in the list of installed plugins, and the new version of the plugin is used. I verified this by attempting to format some code that triggers #959, which did not work before but now works.

So from my point of view, this could be released officially. :tada:

Thanks a lot!

PhilippWendler avatar Oct 05 '23 14:10 PhilippWendler

Great, thank you for testing! I have published the release: https://github.com/google/google-java-format/releases/tag/v1.18.1

cushon avatar Oct 05 '23 15:10 cushon