deckrider
deckrider
I was able to build a working eclipse dropin myself by: 1. download source from https://github.com/google/google-java-format/archive/refs/tags/v1.16.0.tar.gz 2. search and replace "1.13.0" with "1.16.0" as shown below 3. run 'mvn clean...
The issue is that the wrong version (that I corrected above) was being used to build the Eclipse dropin
Why not use Maven interpolation to fix the version issue? For example: `Bundle-Version: ${project.version}` Or: `${project.version}`
Ah yes of course, line 25 is picked up in line 42! So when I changed the source as shown, I also changed which version was being used, which is...