enhancement
major
minor
major
minor
enhancement
nice-to-have
#26737
Eclipse Maven settings: current TL version as minimum version for plugin exclude
The TL plugin must be excluded from the Eclipse build. Currently, this is done via the following configuration:
<pluginExecutionFilter>
<groupId>com.top-logic</groupId>
<artifactId>tl-maven-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>resolve</goal>
<goal>touch</goal>
</goals>
</pluginExecutionFilter>
The version number used here does not correspond to a CWS SNAPSHOT release (with the version number CWS_XXX-SNAPSHOT).
Instead, <versionRange>[${tl.version},)</versionRange> must be specified as the version.
Test
- Create a CWS Snapshot release and check it out in Eclipse.
- No errors of the type "Plugin execution not covered by life cycle..." should occur.