Skip to content

Commit a0ae1be

Browse files
Bananeweizenmickaelistria
authored andcommitted
Minor fixes in RELEASE_NOTES.md
Wrap images, fix typos etc.
1 parent dfe7688 commit a0ae1be

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

RELEASE_NOTES.md

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Updated the embedded Maven from version 3.9.7 to 3.9.9; [Maven 3.9.9 Release Not
1010

1111
### Surefire/Failsafe plugin configuration propagated to Junit/TestNG launch configuration
1212

13-
The following arguments are supported: <br/>
14-
`<argLine>`, <br/>
15-
`<environmentVariables>`, <br/>
16-
`<systemPropertyVariables>`, <br/>
17-
`<workingDirectory>`,<br/>
18-
`<enableAssertions>`,<br/>
13+
The following arguments are supported:
14+
* `<argLine>`
15+
* `<environmentVariables>`
16+
* `<systemPropertyVariables>`
17+
* `<workingDirectory>`
18+
* `<enableAssertions>`
1919

20-
Configuration is propagated on unit test launch configuration creation and also when executing `maven > update project`
20+
Configuration is propagated on unit test launch configuration creation and also when executing `Maven > Update Project`.
2121

2222
## 2.6.1
2323

@@ -39,7 +39,7 @@ Updated the embedded Maven from version 3.9.5 to 3.9.6; [Maven 3.9.6 Release Not
3939

4040
### Improved toolchain.xml handling
4141

42-
In the Preferences under `Maven -> User Settings` the user `toolchain.xml` used in workspace builds can now be specified explicitly.
42+
In the Preferences under `Maven > User Settings` the user `toolchain.xml` used in workspace builds can now be specified explicitly.
4343
At the same time the `maven-toolchains-plugin` is now disabled by default for workspace builds.
4444

4545
### Improved resource linking
@@ -48,8 +48,8 @@ Source or resource folders of Maven-projects outside of the project's base direc
4848

4949
### Project preference for automated Maven project configuration updates
5050

51-
Automatic configuration updates for Maven projects can now be disabled the in the project preferences.
52-
This allows to disable these updates individually per project and to store the setting in a preference-file under version control,
51+
Automatic configuration updates for Maven projects can now be disabled in the project preferences.
52+
This allows to disable these updates individually per project and to store the setting in a preference file under version control,
5353
which is useful for projects that require special workspace configuration that doesn't exactly match the configuration in the `pom.xml`.
5454

5555
![grafik](https://github.com/eclipse-m2e/m2e-core/assets/44067969/7d27ceda-5d13-4f0e-97f0-ff34c94d7493)
@@ -132,7 +132,7 @@ Furthermore the processing has been enhanced to support future Java versions as
132132
### Enhanced M2E Maven Target support
133133

134134
* OSGi metadata generated for artifacts that don't contain a OSGi compliant MANIFEST.MF have been enhanced to also contain version ranges for `Import-Package` headers by default.
135-
* Source Bundles of excluded artifacts are now excluded too
135+
* Source Bundles of excluded artifacts are now excluded too.
136136

137137
## 2.2.1
138138

@@ -155,6 +155,7 @@ Previously, to participate in the incremental maven build it was necessary to
155155
This often leads to a poor user experience and we think that users are adding mojos on purpose because they perform valuable tasks.
156156

157157
Because of this, M2E now automatically enables the execution of mojos if there is no mapping configured. In case you want to change this there is a new configuration option to control the behavior:
158+
158159
![grafik](https://user-images.githubusercontent.com/1331477/211298610-0fa92418-246a-4377-913a-60d02d63013b.png)
159160

160161
### Updated Dependency Editor
@@ -254,9 +255,11 @@ In general, MojoExecutions should be set up within the scope of `MavenExecutionC
254255
### Improved support for Maven archetypes
255256

256257
Maven archetypes can use Groovy scripts for the processing of input parameters since Maven 3, which is now also supported via m2e. In addition, validation of parameters with regular expressions is now also supported:
258+
257259
![archetype parameter validation](https://user-images.githubusercontent.com/17798/189828315-2deb2fd4-c310-4e75-a83b-9603acfb4198.png)
258260

259261
Any additional inputs required by the Groovy script are handled in the Eclipse console:
262+
260263
![archetype in Eclipse console](https://user-images.githubusercontent.com/17798/189828638-2bb545b8-bbaf-4d72-a8fb-ba798df9894f.png)
261264

262265
This feature was sponsored by [Faktor Zehn](https://faktorzehn.org)
@@ -362,9 +365,10 @@ The new editor brings more powerful pom.xml understanding and edition features;
362365
#### the m2e-pde editor now supports adding more than one dependency per target location:
363366

364367
![grafik](https://user-images.githubusercontent.com/1331477/126075863-ee075afb-c4e1-423d-acc0-8174905378dd.png)
368+
365369
![grafik](https://user-images.githubusercontent.com/1331477/126106751-892626dc-46d5-45a5-841b-beff82085de0.png)
366370

367-
```
371+
```xml
368372
<target name="multipleElements">
369373
<locations>
370374
<location includeDependencyScope="compile" includeSource="true" missingManifest="generate" type="Maven">
@@ -391,7 +395,7 @@ Old target formats are automatically converted.
391395

392396
![grafik](https://user-images.githubusercontent.com/1331477/126276711-8e42165c-01bd-4d79-a28b-441bbc7c9fc7.png)
393397

394-
```
398+
```xml
395399
<target name="extraRepository">
396400
<locations>
397401
<location includeDependencyScope="compile" includeSource="true" missingManifest="generate" type="Maven">
@@ -419,9 +423,9 @@ With the upgrade to the newer LemMinX-Maven, the edition of pom.xml with the Gen
419423

420424
#### One way synchronization for jpms directives from maven compiler arguments to .classpath file
421425

422-
Extract jpms arguments (--add-exports,--add-opens,--add-reads,--patch-module) from the maven-compiler-plugin compiler arguments if any.
426+
Extract jpms arguments (`--add-exports`, `--add-opens`, `--add-reads`, `--patch-module`) from the `maven-compiler-plugin` compiler arguments if any.
423427
Dispatch the arguments in the right container (if the target module is part of JRE then in JreContainer else in M2eContainer) and
424-
transform them into eclipse classpath attributes (add-exports, add-opens, add-reads, patch-module)
428+
transform them into eclipse classpath attributes (`add-exports`, `add-opens`, `add-reads`, `patch-module`)
425429

426430
#### Improved m2e development workflow
427431

0 commit comments

Comments
 (0)