You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugin-maven/CHANGES.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,19 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
7
7
* Add support for biome. The Rome project [was renamed to Biome](https://biomejs.dev/blog/annoucing-biome/).
8
8
The configuration is still the same, but you should switch to the new `<biome>` tag and adjust
9
9
the version accordingly. ([#1804](https://github.com/diffplug/spotless/issues/1804)).
10
+
* Support configuration of mirrors for P2 repositories ([#1697](https://github.com/diffplug/spotless/issues/1697)):
11
+
```
12
+
<eclipse>
13
+
<p2Mirrors>
14
+
<p2Mirror>
15
+
<prefix>https://download.eclipse.org/</prefix>
16
+
<url>https://some.internal.mirror/eclipse</url>
17
+
</p2Mirror>
18
+
</p2Mirrors>
19
+
</eclipse>
20
+
```
21
+
Mirrors are selected by prefix match, for example `https://download.eclipse.org/eclipse/updates/4.26/` will be redirected to `https://some.internal.mirror/eclipse/eclipse/updates/4.26/`.
22
+
The same configuration exists for `<greclipse>` and `<eclipseCdt>`.
10
23
### Fixed
11
24
* Added support for plugins when using Prettier version `3.0.0` and newer. ([#1802](https://github.com/diffplug/spotless/pull/1802))
0 commit comments