|
22 | 22 | <groupId>com.google.googlejavaformat</groupId> |
23 | 23 | <artifactId>google-java-format-eclipse-plugin</artifactId> |
24 | 24 | <packaging>eclipse-plugin</packaging> |
25 | | - <version>1.9.0</version> |
| 25 | + <version>1.11.0</version> |
26 | 26 |
|
27 | 27 | <name>Google Java Format Plugin for Eclipse 4.5+</name> |
28 | 28 |
|
|
32 | 32 |
|
33 | 33 | <properties> |
34 | 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
35 | | - |
36 | 35 | <tycho-version>1.7.0</tycho-version> |
37 | | - |
38 | | - <!-- specific library versions; must match declarations in build.properties and META-INF/MANIFEST.MF --> |
39 | | - <google-java-format.version>1.9</google-java-format.version> |
40 | | - <guava.version>30.1.1-jre</guava.version> |
41 | 36 | </properties> |
42 | 37 |
|
43 | 38 | <dependencies> |
44 | 39 | <dependency> |
45 | 40 | <groupId>com.google.googlejavaformat</groupId> |
46 | 41 | <artifactId>google-java-format</artifactId> |
47 | | - <version>${google-java-format.version}</version> |
48 | | - <type>jar</type> |
49 | | - </dependency> |
50 | | - <dependency> |
51 | | - <groupId>com.google.guava</groupId> |
52 | | - <artifactId>guava</artifactId> |
53 | | - <version>${guava.version}</version> |
54 | | - <type>jar</type> |
| 42 | + <version>${project.version}</version> |
55 | 43 | </dependency> |
56 | 44 | </dependencies> |
57 | 45 |
|
|
81 | 69 | <configuration> |
82 | 70 | <outputDirectory>lib</outputDirectory> |
83 | 71 | <includeScope>runtime</includeScope> |
84 | | - <excludeTransitive>true</excludeTransitive> |
| 72 | + <stripVersion>true</stripVersion> |
| 73 | + <overWriteReleases>true</overWriteReleases> |
85 | 74 | <overWriteSnapshots>true</overWriteSnapshots> |
| 75 | + <includeArtifactIds>guava,google-java-format</includeArtifactIds> |
86 | 76 | </configuration> |
87 | 77 | </plugin> |
88 | 78 |
|
|
92 | 82 | <version>${tycho-version}</version> |
93 | 83 | <extensions>true</extensions> |
94 | 84 | </plugin> |
| 85 | + |
| 86 | + <plugin> |
| 87 | + <groupId>org.eclipse.tycho</groupId> |
| 88 | + <artifactId>tycho-versions-plugin</artifactId> |
| 89 | + <version>${tycho-version}</version> |
| 90 | + <configuration> |
| 91 | + <newVersion>${project.version}</newVersion> |
| 92 | + </configuration> |
| 93 | + </plugin> |
| 94 | + |
95 | 95 | <plugin> |
96 | 96 | <groupId>org.eclipse.tycho</groupId> |
97 | 97 | <artifactId>target-platform-configuration</artifactId> |
|
0 commit comments